From 9ddc3ce347eb7be64ec541bc4e53091e3cb1ee9d Mon Sep 17 00:00:00 2001 From: rouggy Date: Mon, 23 Sep 2024 16:24:50 +0700 Subject: [PATCH] update --- TCPClient.go | 123 + TCPServer.go | 125 + clublog.go | 24 + config.go | 69 + config.yml | 19 + database.go | 289 + flex.sqlite | Bin 0 -> 24576 bytes flexradio.go | 226 + flexradio.log | 194659 +++++++++++++++++++++++++++++++++++++++++++++++ go.mod | 19 + go.sum | 35 + logger/log.go | 63 + spot.go | 193 + utils.go | 34 + 14 files changed, 195878 insertions(+) create mode 100644 TCPClient.go create mode 100644 TCPServer.go create mode 100644 clublog.go create mode 100644 config.go create mode 100644 config.yml create mode 100644 database.go create mode 100644 flex.sqlite create mode 100644 flexradio.go create mode 100644 flexradio.log create mode 100644 go.mod create mode 100644 go.sum create mode 100644 logger/log.go create mode 100644 spot.go create mode 100644 utils.go diff --git a/TCPClient.go b/TCPClient.go new file mode 100644 index 0000000..37e0487 --- /dev/null +++ b/TCPClient.go @@ -0,0 +1,123 @@ +package main + +import ( + "bufio" + "net" + "os" + "regexp" + "strings" + "time" + + log "github.com/sirupsen/logrus" +) + +var spotRe *regexp.Regexp = regexp.MustCompile(`DX\sde\s([\w\d]+).*:\s+(\d+.\d)\s+([\w\d]+)\s+(CW|SSB|FT8|FT4|RTTY|USB|LSB)?\s+(.*)\s\s\s+([\d]+\w{1})`) + +type TelnetClient struct { + Login string + Password string + Address string + Port string + Timeout time.Duration + LogWriter *bufio.Writer + Reader *bufio.Reader + Writer *bufio.Writer + Conn *net.TCPConn + TCPServer TCPServer + FlexClient FlexClient + MsgChan chan string + CmdChan chan string + SpotChan chan TelnetSpot + Log *log.Logger +} + +func (tc *TelnetClient) setDefaultParams() { + if tc.Timeout == 0 { + tc.Timeout = 600 * time.Second + } + if tc.LogWriter == nil { + tc.LogWriter = bufio.NewWriter(os.Stdout) + } +} + +func (tc *TelnetClient) StartClient() { + var err error + + addr, err := net.ResolveTCPAddr("tcp", tc.Address+":"+tc.Port) + if err != nil { + tc.Log.Error("cannot resolve Telnet Client address:", err) + } + + tc.setDefaultParams() + tc.Conn, err = net.DialTCP("tcp", nil, addr) + if err != nil { + tc.Log.Error("cannot connect to Telnet Client:", err) + } + tc.Log.Infof("connected to %s:%s", tc.Address, tc.Port) + + err = tc.Conn.SetKeepAlive(true) + if err != nil { + tc.Log.Error("error while setting keep alive:", err) + } + + tc.Reader = bufio.NewReader(tc.Conn) + tc.Writer = bufio.NewWriter(tc.Conn) + + go tc.ReadLine() +} + +func (tc *TelnetClient) Close() { + tc.Writer.WriteString("bye") +} + +func (tc *TelnetClient) SetFilters() { + if Cfg.Cluster.FT8 { + tc.Write([]byte("set/ft8\r\n")) + tc.Log.Info("FT8 is on as defined in the config file") + } + + if Cfg.Cluster.Skimmer { + tc.Write([]byte("set/skimmer\r\n")) + tc.Log.Info("Skimmer is on as defined in the config file") + } + + if !Cfg.Cluster.FT8 { + tc.Write([]byte("set/noft8\r\n")) + tc.Log.Info("FT8 is off as defined in the config file") + } + + if !Cfg.Cluster.Skimmer { + tc.Write([]byte("set/noskimmer\r\n")) + tc.Log.Info("Skimmer is off as defined in the config file") + } +} + +func (tc *TelnetClient) ReadLine() { + for { + message, err := tc.Reader.ReadString('\n') + if err != nil { + tc.Log.Errorf("Error reading message: %s", err) + continue + } + + if strings.Contains(message, "Login: \r\n") || strings.Contains(message, "Please enter your call: \r\n") { + tc.Log.Info("Found login prompt...sending callsign") + tc.Write([]byte(tc.Login + "\r\n")) + time.Sleep(time.Second * 2) + tc.SetFilters() + } + + ProcessTelnetSpot(spotRe, message, tc.SpotChan, tc.Log) + tc.MsgChan <- message + } +} + +// Write sends raw data to remove telnet server +func (tc *TelnetClient) Write(data []byte) (n int, err error) { + n, err = tc.Writer.Write(data) + if err == nil { + err = tc.Writer.Flush() + } + + return +} diff --git a/TCPServer.go b/TCPServer.go new file mode 100644 index 0000000..46f92dd --- /dev/null +++ b/TCPServer.go @@ -0,0 +1,125 @@ +package main + +import ( + "bufio" + "fmt" + "net" + "os" + "strings" + "sync" + + log "github.com/sirupsen/logrus" +) + +var ( + err error +) + +type TCPServer struct { + Address string + Port string + Clients map[net.Conn]bool + Mutex sync.Mutex + LogWriter *bufio.Writer + Reader *bufio.Reader + Writer *bufio.Writer + Conn net.Conn + Listener net.Listener + MsgChan chan string + CmdChan chan string + Log *log.Logger +} + +func NewTCPServer(address string, port string, log *log.Logger) *TCPServer { + return &TCPServer{ + Address: address, + Port: port, + Clients: make(map[net.Conn]bool), + MsgChan: make(chan string), + CmdChan: make(chan string), + Log: log, + } +} + +func (s *TCPServer) StartServer() { + s.LogWriter = bufio.NewWriter(os.Stdout) + s.Listener, err = net.Listen("tcp", Cfg.Telnet.Host+":"+Cfg.Telnet.Port) + if err != nil { + s.Log.Info("could not create telnet server") + } + + defer s.Listener.Close() + + s.Log.Info("telnet server listening on %s:%s", Cfg.Telnet.Host, Cfg.Telnet.Port) + + go func() { + for message := range s.MsgChan { + s.broadcastMessage(message) + } + }() + + for { + s.Conn, err = s.Listener.Accept() + s.Log.Info("client connected", s.Conn.RemoteAddr().String()) + if err != nil { + s.Log.Error("could not accept connections to telnet server") + continue + } + s.Mutex.Lock() + s.Clients[s.Conn] = true + s.Mutex.Unlock() + + go s.handleConnection() + } +} + +func (s *TCPServer) handleConnection() { + defer s.Conn.Close() + s.Conn.Write([]byte("Welcome to the FlexDXCluster telnet server! Type 'bye' to exit.\n")) + + // s.Conn.Write([]byte(`To ALL de XV9Q <0234Z> : Clicked on "JH2UNG"\n`)) + + reader := bufio.NewReader(s.Conn) + for { + + message, err := reader.ReadString('\n') + if err != nil { + s.Mutex.Lock() + delete(s.Clients, s.Conn) + s.Mutex.Unlock() + s.Log.Info("client disconnected") + return + } + + message = strings.TrimSpace(message) + + if message == "bye" { + s.Mutex.Lock() + delete(s.Clients, s.Conn) + s.Mutex.Unlock() + s.Log.Info("client disconnected") + return + } + + s.Log.Info("Message reçu du client: %s\n", message) + } +} + +func (s *TCPServer) Write(message string) (n int, err error) { + n, err = s.Writer.Write([]byte(message)) + if err == nil { + err = s.Writer.Flush() + } + return +} + +func (s *TCPServer) broadcastMessage(message string) { + s.Mutex.Lock() + defer s.Mutex.Unlock() + for client := range s.Clients { + _, err := client.Write([]byte(message)) + if err != nil { + fmt.Println("Erreur lors de l'envoi du message au client:", client.RemoteAddr()) + } + } +} diff --git a/clublog.go b/clublog.go new file mode 100644 index 0000000..8de66c1 --- /dev/null +++ b/clublog.go @@ -0,0 +1,24 @@ +package main + +import ( + "fmt" + "io" + "log" + "net/http" +) + +func CheckClubogDXCC(callsign string) (string, error) { + // Clublog check DXCC + clublogURL := "https://clublog.org/dxcc?call=" + callsign + "&api=5767f19333363a9ef432ee9cd4141fe76b8adf38" + resp, err := http.Get(clublogURL) + if err != nil { + fmt.Println("error while getting DXCC from Clublog") + return "", err + } + defer resp.Body.Close() + body, err := io.ReadAll(resp.Body) + if err != nil { + log.Println("could not get dxcc from clublog", err) + } + return string(body), nil +} diff --git a/config.go b/config.go new file mode 100644 index 0000000..be39ac3 --- /dev/null +++ b/config.go @@ -0,0 +1,69 @@ +package main + +import ( + "fmt" + "os" + + "gopkg.in/yaml.v2" +) + +var ( + Cfg *Config +) + +type Config struct { + SQLite struct { + SQLitePath string `yaml:"sqlite_path"` + Callsign string `yaml:"callsign"` + } `yaml:"sqlite"` + + Cluster struct { + Server string `yaml:"server"` + Port string `yaml:"port"` + Login string `yaml:"login"` + Skimmer bool `yaml:"skimmer"` + FT8 bool `yaml:"ft8"` + } `yaml:"cluster"` + + Flex struct { + IP string `yaml:"ip"` + SpotLife string `yaml:"spot_life"` + } `yaml:"flex"` + + Clublog struct { + Api string `yaml:"api"` + } `yaml:"clublog"` + + Telnet struct { + Host string `yaml:"host"` + Port string `yaml:"port"` + } `yaml:"telnet"` +} + +func NewConfig(configPath string) error { + config := &Config{} + file, err := os.Open(configPath) + if err != nil { + return err + } + defer file.Close() + d := yaml.NewDecoder(file) + + if err := d.Decode(&config); err != nil { + return err + } + + Cfg = config + return nil +} + +func ValidateConfigPath(path string) error { + s, err := os.Stat(path) + if err != nil { + return err + } + if s.IsDir() { + return fmt.Errorf("'%s' is a directory, not a normal file", path) + } + return nil +} diff --git a/config.yml b/config.yml new file mode 100644 index 0000000..88ea97c --- /dev/null +++ b/config.yml @@ -0,0 +1,19 @@ +general: + log_level: DEBUG +sqlite: + sqlite_path: 'C:\Perso\Seafile\Radio\Logs\Log4OM\Vietnam.SQLite' + callsign: XV9Q +cluster: + server: dxc.k0xm.net + port: 7300 + login: xv9q-5 + skimmer: true + ft8: false +flex: + ip: 10.10.10.120 + spot_life: 300 +clublog: + api: 5767f19333363a9ef432ee9cd4141fe76b8adf38 +telnet: + host: 0.0.0.0 + port: 7301 \ No newline at end of file diff --git a/database.go b/database.go new file mode 100644 index 0000000..8df2a26 --- /dev/null +++ b/database.go @@ -0,0 +1,289 @@ +package main + +import ( + "context" + "database/sql" + "fmt" + "os" + "strconv" + "time" + + log "github.com/sirupsen/logrus" +) + +type Contact struct { + Callsign string + Band string + Mode string + DXCC string + StationCallsign string + Country string +} + +type ContactsRepository struct { + db *sql.DB + Log *log.Logger +} + +type FlexDXClusterRepository struct { + db *sql.DB + Log *log.Logger +} + +func NewContactsRepository(filePath string, log *log.Logger) *ContactsRepository { + db, err := sql.Open("sqlite3", filePath) + if err != nil { + fmt.Println("Cannot open db", err) + } + return &ContactsRepository{ + db: db, + Log: log} +} + +func NewFlexDXDatabase(filePath string, log *log.Logger) *FlexDXClusterRepository { + + db, err := sql.Open("sqlite3", filePath) + if err != nil { + fmt.Println("Cannot open db", err) + } + + log.Info("Opening SQLite database") + + _, err = db.ExecContext( + context.Background(), + `CREATE TABLE IF NOT EXISTS "spots" ( + "id" INTEGER NOT NULL UNIQUE, + "commandNumber" INTEGER NOT NULL UNIQUE, + "flexSpotNumber" INTEGER UNIQUE, + "dx" TEXT NOT NULL, + "freqMhz" TEXT, + "freqHz" TEXT, + "band" TEXT, + "mode" TEXT, + "spotter" INTEGER, + "flexMode" TEXT, + "source" TEXT, + "timestamp" INTEGER, + "lifeTime" TEXT, + "priority" TEXT, + "comment" TEXT, + "color" TEXT, + "backgroundColor" INTEGER, + PRIMARY KEY("id" AUTOINCREMENT) +)`, + ) + + if err != nil { + log.Warn("Cannot create table", err) + } + + return &FlexDXClusterRepository{ + db: db, + Log: log, + } +} + +func (r *ContactsRepository) ListByCountry(countryID string) ([]*Contact, error) { + rows, err := r.db.Query("SELECT callsign, band, mode, dxcc, stationcallsign, country FROM log WHERE dxcc = ?", countryID) + if err != nil { + log.Error("could not query database", err) + return nil, err + } + + contacts := []*Contact{} + for rows.Next() { + c := Contact{} + if err := rows.Scan(&c.Callsign, &c.Band, &c.Mode, &c.DXCC, &c.StationCallsign, &c.Country); err != nil { + log.Error("could not query database", err) + return nil, err + } + contacts = append(contacts, &c) + } + return contacts, nil +} + +func (r *ContactsRepository) ListByCountryMode(countryID string, mode string) ([]*Contact, error) { + + modeUSB := "USB" + modeLSB := "LSB" + + if mode == "USB" || mode == "LSB" { + + rows, err := r.db.Query("SELECT callsign, band, mode, dxcc, stationcallsign, country FROM log WHERE dxcc = ? AND (mode = ? OR mode = ?)", countryID, modeLSB, modeUSB) + if err != nil { + log.Error("could not query database", err) + return nil, err + } + + contacts := []*Contact{} + for rows.Next() { + c := Contact{} + if err := rows.Scan(&c.Callsign, &c.Band, &c.Mode, &c.DXCC, &c.StationCallsign, &c.Country); err != nil { + log.Error("could not query database", err) + return nil, err + } + contacts = append(contacts, &c) + } + return contacts, nil + + } else { + + rows, err := r.db.Query("SELECT callsign, band, mode, dxcc, stationcallsign, country FROM log WHERE dxcc = ? AND mode = ?", countryID, mode) + if err != nil { + log.Error("could not query the database", err) + return nil, err + } + + contacts := []*Contact{} + for rows.Next() { + c := Contact{} + if err := rows.Scan(&c.Callsign, &c.Band, &c.Mode, &c.DXCC, &c.StationCallsign, &c.Country); err != nil { + fmt.Println(err) + return nil, err + } + contacts = append(contacts, &c) + } + return contacts, nil + + } +} + +func (r *ContactsRepository) ListByCountryBand(countryID string, band string) ([]*Contact, error) { + rows, err := r.db.Query("SELECT callsign, band, mode, dxcc, stationcallsign, country FROM log WHERE dxcc = ? AND band = ?", countryID, band) + if err != nil { + fmt.Println(err) + return nil, err + } + + contacts := []*Contact{} + for rows.Next() { + c := Contact{} + if err := rows.Scan(&c.Callsign, &c.Band, &c.Mode, &c.DXCC, &c.StationCallsign, &c.Country); err != nil { + fmt.Println(err) + return nil, err + } + contacts = append(contacts, &c) + } + return contacts, nil +} + +func (r *ContactsRepository) ListByCallSign(callSign string, band string, mode string) ([]*Contact, error) { + rows, err := r.db.Query("SELECT callsign, band, mode, dxcc, stationcallsign, country FROM log WHERE callsign = ? AND band = ? AND mode = ?", callSign, band, mode) + if err != nil { + fmt.Println(err) + return nil, err + } + + contacts := []*Contact{} + for rows.Next() { + c := Contact{} + if err := rows.Scan(&c.Callsign, &c.Band, &c.Mode, &c.DXCC, &c.StationCallsign, &c.Country); err != nil { + fmt.Println(err) + return nil, err + } + contacts = append(contacts, &c) + } + return contacts, nil +} + +func (r *FlexDXClusterRepository) FindDXSameBand(spot FlexSpot) (*FlexSpot, error) { + rows, err := r.db.Query("SELECT * from spots WHERE dx = ? AND band = ?", spot.DX, spot.Band) + if err != nil { + fmt.Println(err) + return nil, err + } + + s := FlexSpot{} + for rows.Next() { + if err := rows.Scan(&s.ID, &s.CommandNumber, &s.FlexSpotNumber, &s.DX, &s.FrequencyMhz, &s.FrequencyHz, &s.Band, &s.Mode, &s.SpotterCallsign, &s.FlexMode, &s.Source, &s.TimeStamp, &s.LifeTime, &s.Priority, + &s.Comment, &s.Color, &s.BackgroundColor); err != nil { + fmt.Println(err) + return nil, err + } + } + return &s, nil +} + +func (r *FlexDXClusterRepository) CreateSpot(spot FlexSpot) { + query := "INSERT INTO `spots` (`commandNumber`, `flexSpotNumber`, `dx`, `freqMhz`, `freqHz`, `band`, `mode`, `spotter`, `flexMode`, `source`, `timestamp`, `lifeTime`, `priority`, `comment`, `color`, `backgroundColor`) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)" + insertResult, err := r.db.ExecContext(context.Background(), query, spot.CommandNumber, spot.CommandNumber, spot.DX, spot.FrequencyMhz, spot.FrequencyHz, spot.Band, spot.Mode, spot.SpotterCallsign, spot.FlexMode, spot.Source, time.Now().Unix(), spot.LifeTime, spot.Priority, spot.Comment, spot.Color, spot.BackgroundColor) + if err != nil { + log.Errorf("cannot insert spot in database: %s", err) + } + + _, err = insertResult.LastInsertId() + if err != nil { + log.Errorf("impossible to retrieve last inserted id: %s", err) + } + +} + +func (r *FlexDXClusterRepository) UpdateSpotSameBand(spot FlexSpot) { + return +} + +func (r *FlexDXClusterRepository) FindSpotByCommandNumber(commandNumber string) (*FlexSpot, error) { + rows, err := r.db.Query("SELECT * from spots WHERE commandNumber = ?", commandNumber) + if err != nil { + fmt.Println(err) + return nil, err + } + + s := FlexSpot{} + for rows.Next() { + if err := rows.Scan(&s.ID, &s.CommandNumber, &s.FlexSpotNumber, &s.DX, &s.FrequencyMhz, &s.FrequencyHz, &s.Band, &s.Mode, &s.SpotterCallsign, &s.FlexMode, &s.Source, &s.TimeStamp, &s.LifeTime, &s.Priority, + &s.Comment, &s.Color, &s.BackgroundColor); err != nil { + fmt.Println(err) + return nil, err + } + } + return &s, nil +} + +func (r *FlexDXClusterRepository) FindSpotByFlexSpotNumber(spotNumber string) (*FlexSpot, error) { + rows, err := r.db.Query("SELECT * from spots WHERE flexSpotNumber = ?", spotNumber) + if err != nil { + fmt.Println(err) + return nil, err + } + + s := FlexSpot{} + for rows.Next() { + if err := rows.Scan(&s.ID, &s.CommandNumber, &s.FlexSpotNumber, &s.DX, &s.FrequencyMhz, &s.FrequencyHz, &s.Band, &s.Mode, &s.SpotterCallsign, &s.FlexMode, &s.Source, &s.TimeStamp, &s.LifeTime, &s.Priority, + &s.Comment, &s.Color, &s.BackgroundColor); err != nil { + fmt.Println(err) + return nil, err + } + } + return &s, nil +} + +func (r *FlexDXClusterRepository) UpdateFlexSpotNumberByID(flexSpot string, spot FlexSpot) (*FlexSpot, error) { + flexSpotNumberInt, _ := strconv.Atoi(flexSpot) + rows, err := r.db.Query(`UPDATE spots SET flexSpotNumber = ? WHERE id = ? RETURNING *`, flexSpotNumberInt, spot.ID) + if err != nil { + r.Log.Errorf("could not update database: %s", err) + } + + s := FlexSpot{} + for rows.Next() { + if err := rows.Scan(&s.ID, &s.CommandNumber, &s.FlexSpotNumber, &s.DX, &s.FrequencyMhz, &s.FrequencyHz, &s.Band, &s.Mode, &s.SpotterCallsign, &s.FlexMode, &s.Source, &s.TimeStamp, &s.LifeTime, &s.Priority, + &s.Comment, &s.Color, &s.BackgroundColor); err != nil { + fmt.Println(err) + return nil, err + } + } + + return &s, nil +} + +func DeleteDatabase(filePath string, log *log.Logger) { + _, err := os.Stat(filePath) + if !os.IsNotExist(err) { + err := os.Remove(filePath) + if err != nil { + log.Error("could not delete existing database") + } + log.Info("deleting existing database") + } +} diff --git a/flex.sqlite b/flex.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..50bda6fdb8290b8652d7b7c8c2b707866d0835fc GIT binary patch literal 24576 zcmeI4No-r!6^3~^Nt8rg4VEa08W?3!2}zmv9_IpvOL34WagaD@U{ScTMI}NdQe&bR zMK=kGB8#HU;5dmBGfv_-gPox0DqS?tqCkrlD7tAkO*ic(=#VsU(K=c5oI~YGS3mo_ukL*opaB<*Myx~h;HoXZ0m*Ht<`;-L(`>UO!G~fO{3AAf`<_vm4m@A z`pOgV`20@CDUJQyj+y^QV=zCYF~7%u%P;ds;8$@70)l`bAP5Kof`A|(2nYg#fFN+! z5|}p_E%)8WR`yrVZ07cMHeu6sdM~$gkjtN~eQFFOL;iHgmiA9YL$;c8C-SRXx%=VD z$;ZCIS}Ya|`$4L7&+Wqg-X0ol)%D}_+PH0^%{0ETHg1Z<)1m25(iTsoZShPrYRkkU z3z^XU@b=ll*4Ao%Eq<_dCb!%4%=OLOVG6X$r`jqvy>+j(!*NqOvt6SS@ zKzQBe#(FLd@7%ik_U=YucVqw2TdyFFTz>!f3!4Stf??r3&a9sO?t{C9gZx^cKyQ>O zzb64hN9sC{rmcu?gQPH_NMlSaJe|{3Ic~?JsPI9 zj9GiT2hCs8_wtz4dJlWox$I77WUpP8d_GB%z2NOW*%J#a1*6`mKNW^i7+el)9_+#R zT>n@Zb4ZfQcT`-PIx5QEqvFzh?5G$I1ee1{#i>C2sQ9hG(zox;t>VwU5*^#4s2ufhHj>1&c@{ z&R}AuR?v)so^t&_9W{$^kdTfHRll|2w2RH+QoRHZ8kS2WmA&jqD|<3p({87u-xf^l&c zezq+XUzOkhyE^0d`ZGk-2LS?B*=KiCk%m%AGFhwGjuARspKDxf_p6GfngOB~_IgB# z_@guuCFlV-5+&#XI1;0NcY5AmD``SW7=hFSoXw&3sfwkM2#WpeN+zvD(nJ*miK?$m zH8JgWFV_mT9?v3#+N5Y6IiY4zZF7C>wZ)_|1$wdz2cjZ_w<{FkY($<3&(;d+Q4qQt zWwA02n|HZFFGY&gS`vmX*UMg=c1FV)C>aGCfCrpiqH0aWJdsRY$I*Z;e7dr5U8L*2 zb(iEVx7D2<6s&G?J?xd)SvkBMR=m*Uh^-equ*DHF<#*53ju81XO6F}xB-X21u@85v za7)>QIi#CiP9}Yc5?r|g7YKu3FsuaTYS_x3q99Zav8@cr=4=nURNWHWgw@)`UdE*2 z)CH>Ih;(sInGQu8N|q;S zb*gNRc*k5L4S|~3OTnmnnx+%U?Zowg6TIC=-6)ZD`eE9yULVLeFxtv2-8|ZdJJhVI z)zraW#A+&K74lljs$5!-G^!@j`~ODjc01*?s_(Y5i>a79p2l%QGnwKAUmiEXm}`2v zHqcKnP`MIm^YuufO@*sgQ5$<cqQhGLp6BvXCbt@}&FV(Fl?pzMkE)HZ8lq;oM*Nv(cdHL3wWJ3M4vgeY^ zQWy(YQeZU#g)1p`fChyd%{nu65q^vjmh~KUlV_FQc1wK{TiAtZM|L@j6N^%w%3!@! zn#vlj@MIEHpiHS5)g=+LqBg(0QDv%5Wk&XFD&`6-&N}Qa2PV-04$}z{Hk!%gk03(j zwv%;re>adGmT9RO08s-wKa-NOv((>Z2ewSj>#1c! z5mr_tc|9eus%-S^nK?NdlkHx`2TLFsoZUm?acRmu6$&+!Q_5Xd-65!YRY^Rjs|gYM zx{f_P>sKPvD-AolFQx?Ib#vH1Fhq4MR$^@4@bX&Jw%m#p@M_sp!C7}UhV!)t;KF?E zu|qq+Y=+$FY+bN_$8=V@Pu*&^DxKS`M`Jp^|AO@adot;FXM)spaJI%|x}aWfFZdxv zT3KIKB5h2!4fp?iM#Dej|K=a@5BXpC2mFux_xv~fm;8PH9{(A?&ac9^_80ki{$u_G zf1H1xAM#zk$=CUJc$TMm94;4!ARq_`0)l`bAP5Kof`A|(2nYg#fFSUdAYjljHa3QK zbQJB#2-@LcwD4ClV26g#4i2In7(i>WpzZHR+t-Ko#0j*$y=Z%S&~|sD?dn3yIoi%n zv}QBfjt;c#?P%ND(3(tWTU*h#w4gN_(HabB^?I~A9a^ncr!$$v{{Jgco+3y=KoAfF z1OY)n5D)|e0YN|z5CjB)FNgr{sPCcu{}}E6M``~*Li_(=+W%W=|35_g|3TXS577SK zLi_)I+W+@`N&Ei^4Zq1h;eX?Qg>V1=z< time.Duration(spotLife) { + fc.Repo.UpdateSpotSameBand(flexSpot) + stringSpot = fmt.Sprintf("C%v|spot add rx_freq=%v callsign=%s mode=%s source=%s spotter_callsign=%s timestamp=%v lifetime_seconds=%s comment=%s color=%s background_color=%s priority=%s", flexSpot.CommandNumber, flexSpot.FrequencyMhz, + flexSpot.DX, flexSpot.Mode, flexSpot.Source, flexSpot.SpotterCallsign, flexSpot.TimeStamp, flexSpot.LifeTime, flexSpot.Comment, flexSpot.Color, flexSpot.BackgroundColor, flexSpot.Priority) + } else if srcFlexSpot.DX != "" && srcFlexSpot.Band == flexSpot.Band && srcFlexSpot.FrequencyMhz != flexSpot.FrequencyMhz && elapsed < time.Duration(spotLife) { + fc.Repo.UpdateSpotSameBand(flexSpot) + stringSpot = fmt.Sprintf("C%v|spot set %v rx_freq=%v callsign=%s mode=%s source=%s spotter_callsign=%s timestamp=%v lifetime_seconds=%s comment=%s color=%s background_color=%s priority=%s", flexSpot.CommandNumber, srcFlexSpot.CommandNumber, flexSpot.FrequencyMhz, + flexSpot.DX, flexSpot.Mode, flexSpot.Source, flexSpot.SpotterCallsign, flexSpot.TimeStamp, flexSpot.LifeTime, flexSpot.Comment, flexSpot.Color, flexSpot.BackgroundColor, flexSpot.Priority) + } + + fc.Write(stringSpot) + + command++ + return + +} + +func (fc *FlexClient) ReadLine() { + for { + message, err := fc.Reader.ReadString(byte('\n')) + if err != nil { + fc.Log.Errorf("error reading message: %s", err) + continue + } + + // regRespSpot := *regexp.MustCompile(`R(\d+)\|0\|(\d+)\n`) + // respSpot := regRespSpot.FindStringSubmatch(message) + + // if len(respSpot) > 0 { + // spot, _ := fc.Repo.FindSpotByCommandNumber(respSpot[1]) + // _, err := fc.Repo.UpdateFlexSpotNumberByID(respSpot[2], *spot) + // if err != nil { + // fc.Log.Errorf("could not update flex spot number in database: %s", err) + // } + // } + + // regTriggerSpot := *regexp.MustCompile(`.*\|spot\s(\d+)\striggered.*`) + // respTrigger := regTriggerSpot.FindStringSubmatch(message) + + // if len(respTrigger) > 0 { + // spot, err := fc.Repo.FindSpotByFlexSpotNumber(respTrigger[1]) + // if err != nil { + // fc.Log.Errorf("could not find spot by flex spot number in database: %s", err) + // } + + // msg := fmt.Sprintf(`To ALL de %s <0233z> : Clicked on %s at %s`, Cfg.SQLite.Callsign, spot.DX, spot.FrequencyHz) + // if len(fc.TCPServer.Clients) > 0 { + // fc.MsgChan <- msg + // } + + // } + + msg := strings.TrimSpace(message) + fc.Log.Info(msg) + + } +} + +// Write sends raw data to remove telnet server +func (fc *FlexClient) Write(data string) (n int, err error) { + n, err = fc.Writer.Write([]byte(data + "\n")) + if err == nil { + err = fc.Writer.Flush() + } + return +} diff --git a/flexradio.log b/flexradio.log new file mode 100644 index 0000000..121cf00 --- /dev/null +++ b/flexradio.log @@ -0,0 +1,194659 @@ +time="2024-09-23T13:18:23+07:00" level=info msg="config loaded." func=main.main file="C:/Perso/Seafile/Programmation/Golang/FlexDXCluster/main.go:47" +time="2024-09-23T13:18:51+07:00" level=info msg="config loaded." func=main.main file="c:/Perso/Seafile/Programmation/Golang/FlexDXCluster/main.go:47" +time="23-09-2024 13:23:14" level=info msg="config loaded." func=main.main file="c:/Perso/Seafile/Programmation/Golang/FlexDXCluster/main.go:47" +time=" 2024-09-23 13:26:00" level=info msg="config loaded." +time=" 2024-09-23 13:31:13" level=info msg="config loaded." +time="23-09-2024 13:31:38" level=info msg="config loaded." +[23-09-2024 13:36:55] INFO config loaded. +[23-09-2024 13:58:07] INFO config loaded. +[23-09-2024 13:58:07] INFO FlexDXCluster: Callsign: XV9Q +[23-09-2024 13:59:47] INFO config loaded. +[23-09-2024 13:59:47] INFO FlexDXCluster: Callsign: XV9Q +[23-09-2024 14:00:00] INFO config loaded. +[23-09-2024 14:00:00] INFO FlexDXCluster: Callsign: XV9Q +[23-09-2024 14:00:51] INFO config loaded. +[23-09-2024 14:00:51] INFO Callsign: XV9Q + +[23-09-2024 14:03:25] INFO config loaded. +[23-09-2024 14:03:25] INFO Callsign: XV9Q + +[23-09-2024 14:05:24] INFO config loaded. +[23-09-2024 14:05:24] INFO Callsign: XV9Q + +[23-09-2024 14:05:24] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:05:25] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:05:26] INFO Found login prompt...sending callsign +[23-09-2024 14:05:28] INFO Skimmer is on as defined in the config file +[23-09-2024 14:05:28] INFO FT8 is off as defined in the config file +[23-09-2024 14:06:45] INFO config loaded. +[23-09-2024 14:06:45] INFO Callsign: XV9Q + +[23-09-2024 14:06:45] ERROR deleting existing database +[23-09-2024 14:06:45] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:06:46] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:06:46] INFO Found login prompt...sending callsign +[23-09-2024 14:06:48] INFO Skimmer is on as defined in the config file +[23-09-2024 14:06:48] INFO FT8 is off as defined in the config file +[23-09-2024 14:07:56] INFO config loaded. +[23-09-2024 14:07:56] INFO Callsign: XV9Q + +[23-09-2024 14:07:56] INFO deleting existing database +[23-09-2024 14:09:33] INFO config loaded. +[23-09-2024 14:09:33] INFO Callsign: XV9Q + +[23-09-2024 14:09:33] INFO Opening SQLite database +[23-09-2024 14:09:33] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:09:34] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:09:35] INFO Found login prompt...sending callsign +[23-09-2024 14:09:37] INFO Skimmer is on as defined in the config file +[23-09-2024 14:09:37] INFO FT8 is off as defined in the config file +[23-09-2024 14:11:51] INFO config loaded. +[23-09-2024 14:11:52] INFO Callsign: XV9Q + +[23-09-2024 14:11:52] INFO deleting existing database +[23-09-2024 14:11:52] INFO Opening SQLite database +[23-09-2024 14:11:52] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:11:52] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:11:53] INFO Found login prompt...sending callsign +[23-09-2024 14:11:55] INFO Skimmer is on as defined in the config file +[23-09-2024 14:11:55] INFO FT8 is off as defined in the config file +[23-09-2024 14:17:01] INFO config loaded. +[23-09-2024 14:17:01] INFO Callsign: XV9Q + +[23-09-2024 14:17:01] INFO deleting existing database +[23-09-2024 14:17:01] INFO Opening SQLite database +[23-09-2024 14:17:01] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:17:02] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:17:02] INFO Found login prompt...sending callsign +[23-09-2024 14:17:04] INFO Skimmer is on as defined in the config file +[23-09-2024 14:17:04] INFO FT8 is off as defined in the config file +[23-09-2024 14:17:05] INFO DX: DF2JP - Spotter: SM1HEV - Freq: 14000.0 - Band: 20M - Mode: CW - Comment: 9 dB 27 WPM CQ - Time: 0717Z - DXCC: 230 + +[23-09-2024 14:19:17] INFO config loaded. +[23-09-2024 14:19:17] INFO Callsign: XV9Q + +[23-09-2024 14:19:17] INFO deleting existing database +[23-09-2024 14:19:17] INFO Opening SQLite database +[23-09-2024 14:19:17] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:19:18] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:19:18] INFO Found login prompt...sending callsign +[23-09-2024 14:19:20] INFO Skimmer is on as defined in the config file +[23-09-2024 14:19:20] INFO FT8 is off as defined in the config file +[23-09-2024 14:19:21] INFO DX: R9CP - Spotter: IK4VET - Freq: 21043.1 - Band: 15M - Mode: CW - Comment: 11 dB 29 WPM CQ - Time: 0719Z - DXCC: 15 + +[23-09-2024 14:20:43] INFO config loaded. +[23-09-2024 14:20:43] INFO Callsign: XV9Q + +[23-09-2024 14:20:43] INFO deleting existing database +[23-09-2024 14:20:43] INFO Opening SQLite database +[23-09-2024 14:20:43] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:20:44] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:20:44] INFO Found login prompt...sending callsign +[23-09-2024 14:20:46] INFO Skimmer is on as defined in the config file +[23-09-2024 14:20:46] INFO FT8 is off as defined in the config file +[23-09-2024 14:20:47] INFO DX: HA3MQ - Spotter: OH6BG - Freq: 21017.0 - Band: 15M - Mode: CW - Comment: 23 dB 23 WPM CQ - Time: 0720Z - DXCC: 239 + +[23-09-2024 14:21:07] ERROR could not dial flex client:dial tcp 10.10.10.120:4992: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. +[23-09-2024 14:21:07] INFO connected to %s:%s10.10.10.1204992 +[23-09-2024 14:23:51] INFO config loaded. +[23-09-2024 14:23:51] INFO Callsign: XV9Q + +[23-09-2024 14:23:51] INFO deleting existing database +[23-09-2024 14:23:51] INFO Opening SQLite database +[23-09-2024 14:23:51] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:23:51] INFO connected to 10.10.10.120:4992 +[23-09-2024 14:23:52] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:23:53] INFO Found login prompt...sending callsign +[23-09-2024 14:23:55] INFO Skimmer is on as defined in the config file +[23-09-2024 14:23:55] INFO FT8 is off as defined in the config file +[23-09-2024 14:23:56] INFO DX: ON6MG - Spotter: LA7GIA - Freq: 14016.0 - Band: 20M - Mode: CW - Comment: 28 dB 24 WPM CQ - Time: 0723Z - DXCC: 209 + +[23-09-2024 14:23:56] INFO DX: IK5BCM - Spotter: CT7ANO - Freq: 18072.1 - Band: 17M - Mode: CW - Comment: 22 dB 26 WPM CQ - Time: 0723Z - DXCC: 248 + +[23-09-2024 14:23:57] INFO (** Worked **) DX: ES4QR - Spotter: CT7ANO - Freq: 14006.6 - Band: 20M - Mode: CW - Comment: 36 dB 26 WPM CQ - Time: 0723Z - DXCC: 52 + +[23-09-2024 14:23:57] INFO DX: ES4QR - Spotter: CT7ANO - Freq: 14006.6 - Band: 20M - Mode: CW - Comment: 36 dB 26 WPM CQ - Time: 0723Z - DXCC: 52 + +[23-09-2024 14:23:57] INFO DX: UA3OT - Spotter: CT7ANO - Freq: 14031.1 - Band: 20M - Mode: CW - Comment: 18 dB 20 WPM CQ - Time: 0723Z - DXCC: 54 + +[23-09-2024 14:23:58] INFO DX: UA3QKU - Spotter: F4GOU - Freq: 28020.8 - Band: 10M - Mode: CW - Comment: 7 dB 25 WPM CQ - Time: 0723Z - DXCC: 54 + +[23-09-2024 14:23:58] INFO DX: EW3DI - Spotter: VE3EID - Freq: 14014.5 - Band: 20M - Mode: CW - Comment: 10 dB 21 WPM CQ - Time: 0723Z - DXCC: 27 + +[23-09-2024 14:23:59] INFO DX: UA3QKU - Spotter: MM0ZBH - Freq: 28020.7 - Band: 10M - Mode: CW - Comment: 6 dB 25 WPM CQ - Time: 0723Z - DXCC: 54 + +[23-09-2024 14:23:59] INFO (** New Band **) DX: OA4B - Spotter: KM3T - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 5 dB 21 WPM NCDXF BCN - Time: 0723Z - DXCC: 136 + +[23-09-2024 14:24:00] INFO DX: 8J1FC - Spotter: JH7CSU - Freq: 7012.0 - Band: 40M - Mode: CW - Comment: 33 dB 22 WPM CQ - Time: 0723Z - DXCC: 339 + +[23-09-2024 14:24:00] INFO DX: HB9BCB - Spotter: SQ5OUO - Freq: 14017.6 - Band: 20M - Mode: CW - Comment: 7 dB 30 WPM CQ - Time: 0724Z - DXCC: 287 + +[23-09-2024 14:24:01] INFO DX: HB9BCB - Spotter: SM7IUN - Freq: 14017.5 - Band: 20M - Mode: CW - Comment: 22 dB 31 WPM CQ - Time: 0724Z - DXCC: 287 + +[23-09-2024 14:24:01] INFO DX: F5NZY - Spotter: ES2RR - Freq: 14023.5 - Band: 20M - Mode: CW - Comment: 27 dB 14 WPM CQ - Time: 0724Z - DXCC: 227 + +[23-09-2024 14:24:02] INFO (** New Mode **) DX: R100AR - Spotter: RJ6N - Freq: 21054.0 - Band: 15M - Mode: - Comment: - Time: 0724Z - DXCC: 54 + +[23-09-2024 14:24:03] INFO DX: JQ3DYV - Spotter: BG0AJO - Freq: 24893.0 - Band: 12M - Mode: CW - Comment: 24 dB 23 WPM CQ - Time: 0724Z - DXCC: 339 + +[23-09-2024 14:24:03] INFO (** New Band **) DX: IZ0ARL - Spotter: IZ8STJ - Freq: 7065.0 - Band: 40M - Mode: CW - Comment: DTMBA-I 1662 RM - Time: 0724Z - DXCC: 248 + +[23-09-2024 14:24:04] INFO DX: SX8AS - Spotter: DD5XX - Freq: 14041.0 - Band: 20M - Mode: CW - Comment: 33 dB 27 WPM CQ - Time: 0724Z - DXCC: 236 + +[23-09-2024 14:24:05] INFO DX: 8J1FC - Spotter: JN1ILK - Freq: 7012.0 - Band: 40M - Mode: CW - Comment: 34 dB 22 WPM CQ - Time: 0724Z - DXCC: 339 + +[23-09-2024 14:24:06] INFO DX: ZL4TE - Spotter: EA5RQ - Freq: 21034.0 - Band: 15M - Mode: CW - Comment: 7 dB 17 WPM CQ - Time: 0724Z - DXCC: 170 + +[23-09-2024 14:24:07] INFO (** New DXCC **) DX: 4U1UN - Spotter: WA7LNW - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 38 dB 19 WPM NCDXF BCN - Time: 0724Z - DXCC: 289 + +[23-09-2024 14:24:10] INFO DX: E74OW - Spotter: DL1HWS - Freq: 14020.0 - Band: 20M - Mode: CW - Comment: 27 dB 18 WPM CQ - Time: 0724Z - DXCC: 501 + +[23-09-2024 14:24:14] INFO DX: KH6KB - Spotter: DF2CK - Freq: 18080.9 - Band: 17M - Mode: CW - Comment: 24 dB 23 WPM CQ - Time: 0724Z - DXCC: 110 + +[23-09-2024 14:24:17] INFO DX: R100AR - Spotter: OH8KA - Freq: 21054.0 - Band: 15M - Mode: CW - Comment: 34 dB 29 WPM CQ - Time: 0724Z - DXCC: 54 + +[23-09-2024 14:24:20] INFO DX: JQ6EQD - Spotter: BD4QJP - Freq: 7022.5 - Band: 40M - Mode: CW - Comment: 12 dB 20 WPM CQ - Time: 0724Z - DXCC: 339 + +[23-09-2024 14:24:21] INFO DX: I1IM - Spotter: OH6BG - Freq: 21028.0 - Band: 15M - Mode: CW - Comment: 18 dB 18 WPM CQ - Time: 0724Z - DXCC: 248 + +[23-09-2024 14:24:21] INFO DX: JG1KWY - Spotter: JH7CSU - Freq: 7007.0 - Band: 40M - Mode: CW - Comment: 27 dB 20 WPM CQ - Time: 0724Z - DXCC: 339 + +[23-09-2024 14:24:22] INFO DX: I1IM - Spotter: SV1DPJ - Freq: 21028.0 - Band: 15M - Mode: CW - Comment: 9 dB 17 WPM CQ - Time: 0724Z - DXCC: 248 + +[23-09-2024 14:24:22] INFO DX: OH3JM - Spotter: W1NT - Freq: 14027.0 - Band: 20M - Mode: CW - Comment: 21 dB 20 WPM CQ - Time: 0724Z - DXCC: 224 + +[23-09-2024 14:24:23] INFO DX: R12RED - Spotter: G4FRE - Freq: 14022.4 - Band: 20M - Mode: CW - Comment: 7 dB 26 WPM CQ - Time: 0724Z - DXCC: 54 + +[23-09-2024 14:24:24] INFO DX: R12RED - Spotter: KP3CW - Freq: 14021.9 - Band: 20M - Mode: CW - Comment: 30 dB 27 WPM CQ - Time: 0724Z - DXCC: 54 + +[23-09-2024 14:24:39] INFO config loaded. +[23-09-2024 14:24:39] INFO Callsign: XV9Q + +[23-09-2024 14:24:39] INFO deleting existing database +[23-09-2024 14:24:39] INFO Opening SQLite database +[23-09-2024 14:24:39] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:24:39] INFO connected to 10.10.10.120:4992 +[23-09-2024 14:24:40] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:24:40] INFO Found login prompt...sending callsign +[23-09-2024 14:24:42] INFO Skimmer is on as defined in the config file +[23-09-2024 14:24:42] INFO FT8 is off as defined in the config file +[23-09-2024 14:24:44] INFO DX: ON6MG - Spotter: OK1HRA - Freq: 14015.9 - Band: 20M - Mode: CW - Comment: 8 dB 24 WPM CQ - Time: 0724Z - DXCC: 209 +[23-09-2024 14:24:44] INFO DX: HB9BCB - Spotter: MM3NDH - Freq: 14017.5 - Band: 20M - Mode: CW - Comment: 13 dB 30 WPM CQ - Time: 0724Z - DXCC: 287 +[23-09-2024 14:24:45] INFO DX: DL1BWU - Spotter: CT7ANO - Freq: 24899.1 - Band: 12M - Mode: CW - Comment: 9 dB 22 WPM CQ - Time: 0724Z - DXCC: 230 +[23-09-2024 14:24:46] INFO DX: DM5EA - Spotter: CT7ANO - Freq: 24894.2 - Band: 12M - Mode: CW - Comment: 10 dB 25 WPM CQ - Time: 0724Z - DXCC: 230 +[23-09-2024 14:24:46] INFO DX: UA3OT - Spotter: HG8A - Freq: 14031.0 - Band: 20M - Mode: CW - Comment: 30 dB 23 WPM CQ - Time: 0724Z - DXCC: 54 +[23-09-2024 14:24:47] INFO DX: YE8FOR - Spotter: VU2PTT - Freq: 21024.0 - Band: 15M - Mode: CW - Comment: 8 dB 20 WPM CQ - Time: 0724Z - DXCC: 327 +[23-09-2024 14:24:48] INFO DX: JM1FBF - Spotter: JJ2VLY - Freq: 10127.5 - Band: 30M - Mode: CW - Comment: 36 dB 23 WPM CQ - Time: 0724Z - DXCC: 339 +[23-09-2024 14:24:49] INFO (** New Mode **) DX: IZ5RKH - Spotter: PE1MCF - Freq: 7123.0 - Band: 40M - Mode: - Comment: 57 - Time: 0724Z - DXCC: 248 +[23-09-2024 14:24:52] INFO DX: JQ6EQD - Spotter: JK1QLQ - Freq: 7022.5 - Band: 40M - Mode: CW - Comment: 9 dB 20 WPM CQ - Time: 0724Z - DXCC: 339 +[23-09-2024 14:24:53] INFO DX: SX8AS - Spotter: G4FRE - Freq: 14041.2 - Band: 20M - Mode: CW - Comment: 13 dB 27 WPM CQ - Time: 0724Z - DXCC: 236 +[23-09-2024 14:24:55] INFO DX: E74OW - Spotter: HB9BXE - Freq: 14020.0 - Band: 20M - Mode: CW - Comment: 31 dB 19 WPM CQ - Time: 0724Z - DXCC: 501 +[23-09-2024 14:24:55] INFO DX: EA1FL - Spotter: W8WWV - Freq: 14015.0 - Band: 20M - Mode: CW - Comment: 23 dB 20 WPM CQ - Time: 0724Z - DXCC: 281 +[23-09-2024 14:24:56] INFO DX: JG1KWY - Spotter: 7N4XCV - Freq: 7007.0 - Band: 40M - Mode: CW - Comment: 18 dB 20 WPM CQ - Time: 0724Z - DXCC: 339 +[23-09-2024 14:24:57] INFO (** New Mode **) DX: FK8IK - Spotter: DM5GG - Freq: 28005.0 - Band: 10M - Mode: CW - Comment: 7 dB 32 WPM CQ - Time: 0724Z - DXCC: 162 +[23-09-2024 14:24:59] INFO (** New Mode **) DX: E51JD - Spotter: IZ1PNT - Freq: 14205.0 - Band: 20M - Mode: - Comment: - Time: 0724Z - DXCC: 234 +[23-09-2024 14:25:03] INFO (** Worked **) DX: YB1JCD - Spotter: JK1QLQ - Freq: 21038.0 - Band: 15M - Mode: CW - Comment: 5 dB 29 WPM CQ - Time: 0725Z - DXCC: 327 +[23-09-2024 14:25:03] INFO DX: YB1JCD - Spotter: JK1QLQ - Freq: 21038.0 - Band: 15M - Mode: CW - Comment: 5 dB 29 WPM CQ - Time: 0725Z - DXCC: 327 +[23-09-2024 14:25:04] INFO (** New Band **) DX: I1OXO - Spotter: OK4QRO - Freq: 7034.0 - Band: 40M - Mode: CW - Comment: 5 dB 23 WPM CQ - Time: 0725Z - DXCC: 248 +[23-09-2024 14:25:06] INFO DX: JH6TNH - Spotter: DL8LAS - Freq: 24896.0 - Band: 12M - Mode: CW - Comment: 14 dB 21 WPM CQ - Time: 0725Z - DXCC: 339 +[23-09-2024 14:25:08] INFO DX: S59O - Spotter: JN1ILK - Freq: 28004.9 - Band: 10M - Mode: CW - Comment: 19 dB 23 WPM CQ - Time: 0725Z - DXCC: 499 +[23-09-2024 14:25:11] INFO (** Worked **) DX: LZ2PP - Spotter: KM3T - Freq: 14011.3 - Band: 20M - Mode: CW - Comment: 9 dB 24 WPM CQ - Time: 0725Z - DXCC: 212 +[23-09-2024 14:25:11] INFO DX: LZ2PP - Spotter: KM3T - Freq: 14011.3 - Band: 20M - Mode: CW - Comment: 9 dB 24 WPM CQ - Time: 0725Z - DXCC: 212 +[23-09-2024 14:25:12] INFO (** New Band **) DX: M5TXJ - Spotter: MM3NDH - Freq: 7027.4 - Band: 40M - Mode: CW - Comment: 4 dB 15 WPM CQ - Time: 0725Z - DXCC: 223 +[23-09-2024 14:25:14] INFO DX: VK6RBP - Spotter: DF2CK - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 18 dB 21 WPM NCDXF BCN - Time: 0725Z - DXCC: 150 +[23-09-2024 14:25:18] INFO DX: IZ3ALK - Spotter: HB9DCO - Freq: 14027.0 - Band: 20M - Mode: CW - Comment: 19 dB 20 WPM CQ - Time: 0725Z - DXCC: 248 +[23-09-2024 14:25:19] INFO DX: KB3NSK - Spotter: VE6JY - Freq: 7055.0 - Band: 40M - Mode: CW - Comment: 33 dB 17 WPM CQ - Time: 0725Z - DXCC: 291 +[23-09-2024 14:25:19] INFO DX: 8J1FC - Spotter: KA7OEI - Freq: 7012.0 - Band: 40M - Mode: CW - Comment: 11 dB 22 WPM CQ - Time: 0725Z - DXCC: 339 +[23-09-2024 14:25:20] INFO DX: W1VDE - Spotter: KA7OEI - Freq: 7034.9 - Band: 40M - Mode: CW - Comment: 29 dB 19 WPM CQ - Time: 0725Z - DXCC: 291 +[23-09-2024 14:25:40] INFO DX: JA2IGY - Spotter: 9M2CNC - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 10 dB 20 WPM NCDXF BCN - Time: 0725Z - DXCC: 339 +[23-09-2024 14:25:42] INFO DX: JG8DPF - Spotter: VK2RH - Freq: 21043.0 - Band: 15M - Mode: CW - Comment: 12 dB 28 WPM CQ - Time: 0725Z - DXCC: 339 +[23-09-2024 14:25:43] INFO DX: ZL6B - Spotter: VK2RH - Freq: 24930.0 - Band: 12M - Mode: CW - Comment: 15 dB 22 WPM NCDXF BCN - Time: 0725Z - DXCC: 170 +[23-09-2024 14:25:44] INFO DX: KH6KB - Spotter: SM7IUN - Freq: 18080.8 - Band: 17M - Mode: CW - Comment: 15 dB 24 WPM CQ - Time: 0725Z - DXCC: 110 +[23-09-2024 14:25:45] INFO DX: JJ0TJS - Spotter: JK1QLQ - Freq: 7012.8 - Band: 40M - Mode: CW - Comment: 6 dB 14 WPM CQ - Time: 0725Z - DXCC: 339 +[23-09-2024 14:25:46] INFO DX: F5NZY - Spotter: DF2CK - Freq: 14023.5 - Band: 20M - Mode: CW - Comment: 28 dB 25 WPM CQ - Time: 0725Z - DXCC: 227 +[23-09-2024 14:25:50] INFO (** New Mode **) DX: IK3PQH - Spotter: IW3FFR - Freq: 14265.0 - Band: 20M - Mode: - Comment: IIA V048 IOTA EU-131 - Time: 0725Z - DXCC: 248 +[23-09-2024 14:25:51] INFO DX: RR9O - Spotter: DM5GG - Freq: 21150.1 - Band: 15M - Mode: CW - Comment: 2 dB 24 WPM NCDXF BCN - Time: 0725Z - DXCC: 997 +[23-09-2024 14:25:52] INFO DX: I1IM - Spotter: LZ4UX - Freq: 18082.2 - Band: 17M - Mode: CW - Comment: 4 dB 17 WPM CQ - Time: 0725Z - DXCC: 248 +[23-09-2024 14:25:53] INFO DX: VR2B - Spotter: JI1HFJ - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 12 dB 22 WPM NCDXF BCN - Time: 0725Z - DXCC: 321 +[23-09-2024 14:33:44] INFO config loaded. +[23-09-2024 14:33:44] INFO Callsign: XV9Q + +[23-09-2024 14:33:44] INFO deleting existing database +[23-09-2024 14:33:44] INFO Opening SQLite database +[23-09-2024 14:33:44] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:33:44] INFO connected to 10.10.10.120:4992 +[23-09-2024 14:33:49] INFO R command: 1 - FlexSpotNumber: +[23-09-2024 14:33:50] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:33:50] INFO Found login prompt...sending callsign +[23-09-2024 14:33:52] INFO Skimmer is on as defined in the config file +[23-09-2024 14:33:52] INFO FT8 is off as defined in the config file +[23-09-2024 14:33:54] INFO (** Worked **) DX: E77DX - Spotter: S53WW - Freq: 14014.0 - Band: 20M - Mode: CW - Comment: 17 dB 29 WPM CQ - Time: 0733Z - DXCC: 501 +[23-09-2024 14:33:54] INFO DX: E77DX - Spotter: S53WW - Freq: 14014.0 - Band: 20M - Mode: CW - Comment: 17 dB 29 WPM CQ - Time: 0733Z - DXCC: 501 +[23-09-2024 14:33:54] INFO DX: OH3JM - Spotter: OH6BG - Freq: 14027.0 - Band: 20M - Mode: CW - Comment: 17 dB 20 WPM CQ - Time: 0733Z - DXCC: 224 +[23-09-2024 14:34:42] INFO config loaded. +[23-09-2024 14:34:42] INFO Callsign: XV9Q + +[23-09-2024 14:34:42] INFO deleting existing database +[23-09-2024 14:34:42] INFO Opening SQLite database +[23-09-2024 14:34:42] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:34:42] INFO connected to 10.10.10.120:4992 +[23-09-2024 14:34:42] INFO R command: 1 - FlexSpotNumber: +[23-09-2024 14:34:42] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:34:43] INFO Found login prompt...sending callsign +[23-09-2024 14:34:45] INFO Skimmer is on as defined in the config file +[23-09-2024 14:34:45] INFO FT8 is off as defined in the config file +[23-09-2024 14:34:46] INFO DX: E77DX - Spotter: OH6BG - Freq: 10108.0 - Band: 30M - Mode: CW - Comment: 43 dB 30 WPM CQ - Time: 0734Z - DXCC: 501 +[23-09-2024 14:34:46] INFO DX: G0UAN - Spotter: DK9IP - Freq: 14034.0 - Band: 20M - Mode: CW - Comment: 6 dB 19 WPM CQ - Time: 0734Z - DXCC: 223 +[23-09-2024 14:34:47] INFO DX: IK8RJS - Spotter: LZ3CB - Freq: 14086.0 - Band: 20M - Mode: RTTY - Comment: +17 dB CQ - Time: 0734Z - DXCC: 248 +[23-09-2024 14:34:47] INFO DX: 8J1FC - Spotter: JK1QLQ - Freq: 7012.0 - Band: 40M - Mode: CW - Comment: 16 dB 22 WPM CQ - Time: 0734Z - DXCC: 339 +[23-09-2024 14:34:48] INFO DX: E74OW - Spotter: LA6TPA - Freq: 14020.0 - Band: 20M - Mode: CW - Comment: 5 dB 18 WPM CQ - Time: 0734Z - DXCC: 501 +[23-09-2024 14:34:48] INFO DX: MS0NYM - Spotter: ON6ZQ - Freq: 14007.0 - Band: 20M - Mode: CW - Comment: 15 dB 22 WPM CQ - Time: 0734Z - DXCC: 279 +[23-09-2024 14:34:49] INFO DX: JI2WPM - Spotter: 5W1SA - Freq: 21022.0 - Band: 15M - Mode: CW - Comment: 24 dB 19 WPM CQ - Time: 0734Z - DXCC: 339 +[23-09-2024 14:34:50] INFO DX: DK7LX - Spotter: RU9CZD - Freq: 28021.3 - Band: 10M - Mode: CW - Comment: 29 dB 22 WPM CQ - Time: 0734Z - DXCC: 230 +[23-09-2024 14:34:51] INFO DX: DK0WCY - Spotter: G4ZFE - Freq: 10144.0 - Band: 30M - Mode: CW - Comment: 14 dB 17 WPM BEACON - Time: 0734Z - DXCC: 230 +[23-09-2024 14:34:54] INFO (** New Mode **) DX: IY4OTR - Spotter: DL4PY - Freq: 7113.0 - Band: 40M - Mode: - Comment: MARCONI AWARD - Time: 0734Z - DXCC: 248 +[23-09-2024 14:34:58] INFO DX: KH6KB - Spotter: DD5XX - Freq: 18080.8 - Band: 17M - Mode: CW - Comment: 17 dB 23 WPM CQ - Time: 0734Z - DXCC: 110 +[23-09-2024 14:35:02] INFO DX: PA3BUL - Spotter: LZ4AE - Freq: 21094.8 - Band: 15M - Mode: CW - Comment: 13 dB 15 WPM CQ - Time: 0735Z - DXCC: 263 +[23-09-2024 14:35:04] INFO DX: JE8CXM - Spotter: KO7SS - Freq: 10127.0 - Band: 30M - Mode: CW - Comment: 6 dB 21 WPM CQ - Time: 0735Z - DXCC: 339 +[23-09-2024 14:35:07] INFO DX: DK7PE - Spotter: RN4WA - Freq: 28025.0 - Band: 10M - Mode: CW - Comment: 14 dB 25 WPM CQ - Time: 0735Z - DXCC: 230 +[23-09-2024 14:35:07] INFO (** New Band **) DX: IU0KNS - Spotter: IZ8STJ - Freq: 7177.0 - Band: 40M - Mode: LSB - Comment: - Time: 0735Z - DXCC: 248 +[23-09-2024 14:35:10] INFO DX: DK7PE - Spotter: RU9CZD - Freq: 28024.8 - Band: 10M - Mode: CW - Comment: 14 dB 25 WPM CQ - Time: 0735Z - DXCC: 230 +[23-09-2024 14:35:10] ERROR could not find the DX in the database: sql: expected 17 destination arguments in Scan, not 16 +[23-09-2024 14:38:39] INFO config loaded. +[23-09-2024 14:38:39] INFO Callsign: XV9Q + +[23-09-2024 14:38:39] INFO deleting existing database +[23-09-2024 14:38:39] INFO Opening SQLite database +[23-09-2024 14:38:39] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:38:39] INFO connected to 10.10.10.120:4992 +[23-09-2024 14:38:39] INFO R command: 1 - FlexSpotNumber: +[23-09-2024 14:38:40] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:38:40] INFO Found login prompt...sending callsign +[23-09-2024 14:38:42] INFO Skimmer is on as defined in the config file +[23-09-2024 14:38:42] INFO FT8 is off as defined in the config file +[23-09-2024 14:38:43] INFO DX: AI6W - Spotter: ND7K - Freq: 7023.5 - Band: 40M - Mode: CW - Comment: 18 dB 25 WPM CQ - Time: 0738Z - DXCC: 291 +[23-09-2024 14:38:44] INFO DX: EC7R - Spotter: R9IR - Freq: 28019.1 - Band: 10M - Mode: CW - Comment: 9 dB 24 WPM CQ - Time: 0738Z - DXCC: 281 +[23-09-2024 14:38:44] INFO DX: MS0NYM - Spotter: DK0TE - Freq: 14007.0 - Band: 20M - Mode: CW - Comment: 17 dB 22 WPM CQ - Time: 0738Z - DXCC: 279 +[23-09-2024 14:38:45] INFO DX: ON6MG - Spotter: G4IRN - Freq: 14016.0 - Band: 20M - Mode: CW - Comment: 22 dB 24 WPM CQ - Time: 0738Z - DXCC: 209 +[23-09-2024 14:38:45] INFO (** New Mode **) DX: IK3PQH - Spotter: IW3FFR - Freq: 14265.0 - Band: 20M - Mode: - Comment: last call & QSY 40m - Time: 0738Z - DXCC: 248 +[23-09-2024 14:38:46] INFO DX: E74OW - Spotter: MM0ZBH - Freq: 14020.0 - Band: 20M - Mode: CW - Comment: 25 dB 18 WPM CQ - Time: 0738Z - DXCC: 501 +[23-09-2024 14:38:47] INFO DX: RT2P - Spotter: JN1ILK - Freq: 28017.0 - Band: 10M - Mode: CW - Comment: 4 dB 24 WPM CQ - Time: 0738Z - DXCC: 54 +[23-09-2024 14:38:48] INFO DX: 2E0CNJ - Spotter: EA1URA - Freq: 14053.0 - Band: 20M - Mode: CW - Comment: 17 dB 20 WPM CQ - Time: 0738Z - DXCC: 223 +[23-09-2024 14:38:50] INFO DX: RX0F - Spotter: SE5E - Freq: 28044.0 - Band: 10M - Mode: CW - Comment: 7 dB 31 WPM CQ - Time: 0738Z - DXCC: 15 +[23-09-2024 14:38:51] INFO DX: IZ1ELP - Spotter: VE3EID - Freq: 14013.1 - Band: 20M - Mode: CW - Comment: 14 dB 23 WPM CQ - Time: 0738Z - DXCC: 248 +[23-09-2024 14:38:53] INFO DX: CS3B - Spotter: MM0ZBH - Freq: 21150.0 - Band: 15M - Mode: CW - Comment: 3 dB 22 WPM NCDXF BCN - Time: 0738Z - DXCC: 256 +[23-09-2024 14:38:54] INFO DX: DL5MAY - Spotter: ZL3X - Freq: 14026.2 - Band: 20M - Mode: CW - Comment: 12 dB 14 WPM CQ - Time: 0738Z - DXCC: 230 +[23-09-2024 14:38:55] INFO DX: ZL6B - Spotter: DF2CK - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 25 dB 17 WPM NCDXF BCN - Time: 0738Z - DXCC: 170 +[23-09-2024 14:38:59] INFO (** New Band **) DX: OA4B - Spotter: DL8LAS - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 28 dB 20 WPM NCDXF BCN - Time: 0739Z - DXCC: 136 +[23-09-2024 14:39:04] INFO (** Worked **) DX: OK1DN - Spotter: IK4VET - Freq: 14043.9 - Band: 20M - Mode: CW - Comment: 26 dB 20 WPM CQ - Time: 0739Z - DXCC: 503 +[23-09-2024 14:39:04] INFO DX: OK1DN - Spotter: IK4VET - Freq: 14043.9 - Band: 20M - Mode: CW - Comment: 26 dB 20 WPM CQ - Time: 0739Z - DXCC: 503 +[23-09-2024 14:39:08] INFO (** Worked **) DX: 7K4VPV - Spotter: JN1ILK - Freq: 28031.9 - Band: 10M - Mode: CW - Comment: 14 dB 25 WPM CQ - Time: 0739Z - DXCC: 339 +[23-09-2024 14:39:08] INFO DX: 7K4VPV - Spotter: JN1ILK - Freq: 28031.9 - Band: 10M - Mode: CW - Comment: 14 dB 25 WPM CQ - Time: 0739Z - DXCC: 339 +[23-09-2024 14:39:08] INFO (** New DXCC **) DX: 4U1UN - Spotter: WA7LNW - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 26 dB 19 WPM NCDXF BCN - Time: 0739Z - DXCC: 289 +[23-09-2024 14:39:14] INFO DX: VK2OT - Spotter: VK6ANC - Freq: 28007.0 - Band: 10M - Mode: CW - Comment: 19 dB 24 WPM CQ - Time: 0739Z - DXCC: 150 +[23-09-2024 14:39:15] INFO DX: VE8AT - Spotter: KH6LC - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 17 dB 22 WPM NCDXF BCN - Time: 0739Z - DXCC: 1000 +[23-09-2024 14:39:16] INFO DX: VK2OT - Spotter: BA6KC - Freq: 28007.1 - Band: 10M - Mode: CW - Comment: 10 dB 24 WPM CQ - Time: 0739Z - DXCC: 150 +[23-09-2024 14:39:17] INFO DX: E77DX - Spotter: DF2CK - Freq: 1828.0 - Band: 17M - Mode: CW - Comment: 20 dB 30 WPM CQ - Time: 0739Z - DXCC: 501 +[23-09-2024 14:39:18] INFO DX: R100AR - Spotter: 2E0INH - Freq: 21054.0 - Band: 15M - Mode: CW - Comment: 19 dB 29 WPM CQ - Time: 0739Z - DXCC: 54 +[23-09-2024 14:39:20] INFO DX: YE8FOR - Spotter: VK2GEL - Freq: 21024.0 - Band: 15M - Mode: CW - Comment: 28 dB 19 WPM CQ - Time: 0739Z - DXCC: 327 +[23-09-2024 14:39:22] INFO DX: F4GOP - Spotter: R9IR - Freq: 28020.2 - Band: 10M - Mode: CW - Comment: 13 dB 21 WPM CQ - Time: 0739Z - DXCC: 227 +[23-09-2024 14:39:25] INFO DX: N4ET - Spotter: G4ZFE - Freq: 14007.8 - Band: 20M - Mode: CW - Comment: 24 dB 44 WPM CQ - Time: 0739Z - DXCC: 291 +[23-09-2024 14:39:28] INFO (** Worked **) DX: YB1JCD - Spotter: JN1ILK - Freq: 21038.0 - Band: 15M - Mode: CW - Comment: 16 dB 29 WPM CQ - Time: 0739Z - DXCC: 327 +[23-09-2024 14:39:28] INFO DX: YB1JCD - Spotter: JN1ILK - Freq: 21038.0 - Band: 15M - Mode: CW - Comment: 16 dB 29 WPM CQ - Time: 0739Z - DXCC: 327 +[23-09-2024 14:39:29] INFO DX: E77DX - Spotter: DL0PF - Freq: 1828.0 - Band: 17M - Mode: CW - Comment: 5 dB 32 WPM CQ - Time: 0739Z - DXCC: 501 +[23-09-2024 14:39:30] INFO DX: LB2WD - Spotter: 3V8SS - Freq: 28024.9 - Band: 10M - Mode: CW - Comment: 8 dB 20 WPM CQ - Time: 0739Z - DXCC: 266 +[23-09-2024 14:39:30] INFO DX: G4RCG - Spotter: JG1DLY - Freq: 24894.0 - Band: 12M - Mode: CW - Comment: 6 dB 22 WPM CQ - Time: 0739Z - DXCC: 223 +[23-09-2024 14:39:31] INFO (** New Mode **) DX: R3PLD - Spotter: IK2YGZ - Freq: 24940.0 - Band: 12M - Mode: - Comment: - Time: 0739Z - DXCC: 54 +[23-09-2024 14:39:36] INFO DX: NN6EE - Spotter: W2MV - Freq: 7034.0 - Band: 40M - Mode: CW - Comment: 15 dB 25 WPM CQ - Time: 0739Z - DXCC: 291 +[23-09-2024 14:39:37] INFO DX: OM3JW - Spotter: OE9GHV - Freq: 18081.0 - Band: 17M - Mode: CW - Comment: 16 dB 20 WPM CQ - Time: 0739Z - DXCC: 504 +[23-09-2024 14:39:38] INFO DX: NN6EE - Spotter: KM3T - Freq: 7034.0 - Band: 40M - Mode: CW - Comment: 16 dB 25 WPM CQ - Time: 0739Z - DXCC: 291 +[23-09-2024 14:39:39] INFO DX: OM3JW - Spotter: LZ3CB - Freq: 18081.0 - Band: 17M - Mode: CW - Comment: 8 dB 20 WPM CQ - Time: 0739Z - DXCC: 504 +[23-09-2024 14:39:43] INFO DX: 2E0CNJ - Spotter: DK0TE - Freq: 14024.0 - Band: 20M - Mode: CW - Comment: 8 dB 20 WPM CQ - Time: 0739Z - DXCC: 223 +[23-09-2024 14:39:44] INFO DX: MW0BFY - Spotter: LA7GIA - Freq: 14047.0 - Band: 20M - Mode: CW - Comment: 18 dB 20 WPM CQ - Time: 0739Z - DXCC: 294 +[23-09-2024 14:39:58] INFO (** New Mode **) DX: IY4OTR - Spotter: HA8WX - Freq: 7113.0 - Band: 40M - Mode: - Comment: --MARCONI-- - Time: 0740Z - DXCC: 248 +[23-09-2024 14:40:05] INFO (** Worked **) DX: VK2ARZ - Spotter: VK6ANC - Freq: 14018.0 - Band: 20M - Mode: CW - Comment: 12 dB 16 WPM CQ - Time: 0740Z - DXCC: 150 +[23-09-2024 14:40:05] INFO DX: VK2ARZ - Spotter: VK6ANC - Freq: 14018.0 - Band: 20M - Mode: CW - Comment: 12 dB 16 WPM CQ - Time: 0740Z - DXCC: 150 +[23-09-2024 14:40:09] INFO (** New Band **) DX: G5VZ - Spotter: GI4DOH - Freq: 7011.0 - Band: 40M - Mode: CW - Comment: 10 dB 25 WPM CQ - Time: 0740Z - DXCC: 223 +[23-09-2024 14:40:10] INFO DX: HA5AEK - Spotter: HB9DCO - Freq: 10116.0 - Band: 30M - Mode: CW - Comment: 17 dB 16 WPM CQ - Time: 0740Z - DXCC: 239 +[23-09-2024 14:40:10] INFO (** New Band **) DX: G5VZ - Spotter: 2E0INH - Freq: 7011.0 - Band: 40M - Mode: CW - Comment: 4 dB 25 WPM CQ - Time: 0740Z - DXCC: 223 +[23-09-2024 14:40:11] INFO DX: VK6RBP - Spotter: DL8LAS - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 25 dB 19 WPM NCDXF BCN - Time: 0740Z - DXCC: 150 +[23-09-2024 14:40:15] INFO DX: UR7VT - Spotter: IK4VET - Freq: 14063.1 - Band: 20M - Mode: CW - Comment: 10 dB 16 WPM CQ - Time: 0740Z - DXCC: 288 +[23-09-2024 14:40:18] INFO (** New Mode **) DX: IK8WCP - Spotter: IQ8DO - Freq: 7090.0 - Band: 40M - Mode: - Comment: 07:40 19th Palazzo Reale Ca - Time: 0740Z - DXCC: 248 +[23-09-2024 14:40:19] INFO DX: VK2BJ - Spotter: DK9IP - Freq: 14023.5 - Band: 20M - Mode: CW - Comment: 20 dB 23 WPM CQ - Time: 0740Z - DXCC: 150 +[23-09-2024 14:40:20] INFO (** New Mode **) DX: NL7V - Spotter: IZ1PNT - Freq: 14247.0 - Band: 20M - Mode: - Comment: - Time: 0740Z - DXCC: 6 +[23-09-2024 14:40:21] INFO DX: RD3AC - Spotter: DL8LAS - Freq: 14018.9 - Band: 20M - Mode: CW - Comment: 24 dB 24 WPM CQ - Time: 0740Z - DXCC: 54 +[23-09-2024 14:40:22] INFO DX: 8J1FC - Spotter: N6TV - Freq: 7012.0 - Band: 40M - Mode: CW - Comment: 7 dB 21 WPM CQ - Time: 0740Z - DXCC: 339 +[23-09-2024 14:40:22] INFO DX: G4DNP - Spotter: DL1HWS - Freq: 14055.5 - Band: 20M - Mode: CW - Comment: 11 dB 13 WPM CQ - Time: 0740Z - DXCC: 223 +[23-09-2024 14:40:24] INFO DX: HA7VU - Spotter: OK1FCJ - Freq: 14025.3 - Band: 20M - Mode: CW - Comment: 13 dB 18 WPM CQ - Time: 0740Z - DXCC: 239 +[23-09-2024 14:40:26] INFO DX: R12RED - Spotter: G4ZFE - Freq: 14021.9 - Band: 20M - Mode: CW - Comment: 39 dB 28 WPM CQ - Time: 0740Z - DXCC: 54 +[23-09-2024 14:40:27] INFO DX: G4DN - Spotter: SM7IUN - Freq: 14055.5 - Band: 20M - Mode: CW - Comment: 6 dB 14 WPM CQ - Time: 0740Z - DXCC: 223 +[23-09-2024 14:40:30] INFO DX: G4DN - Spotter: EA5RQ - Freq: 14055.5 - Band: 20M - Mode: CW - Comment: 6 dB 13 WPM CQ - Time: 0740Z - DXCC: 223 +[23-09-2024 14:40:31] INFO DX: JK1EVU - Spotter: BD4QJP - Freq: 10125.4 - Band: 30M - Mode: CW - Comment: 6 dB 24 WPM CQ - Time: 0740Z - DXCC: 339 +[23-09-2024 14:40:40] INFO config loaded. +[23-09-2024 14:40:40] INFO Callsign: XV9Q + +[23-09-2024 14:40:40] INFO deleting existing database +[23-09-2024 14:40:40] INFO Opening SQLite database +[23-09-2024 14:40:40] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:40:40] INFO connected to 10.10.10.120:4992 +[23-09-2024 14:40:47] INFO R command: 1 - FlexSpotNumber: +[23-09-2024 14:40:47] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:40:48] INFO Found login prompt...sending callsign +[23-09-2024 14:40:50] INFO Skimmer is on as defined in the config file +[23-09-2024 14:40:50] INFO FT8 is off as defined in the config file +[23-09-2024 14:40:51] INFO DX: UR7VT - Spotter: LZ5DI - Freq: 14063.0 - Band: 20M - Mode: CW - Comment: 4 dB 17 WPM CQ - Time: 0740Z - DXCC: 288 +[23-09-2024 14:40:51] INFO DX: RD3AC - Spotter: AC0C - Freq: 14018.9 - Band: 20M - Mode: CW - Comment: 16 dB 25 WPM CQ - Time: 0740Z - DXCC: 54 +[23-09-2024 14:40:53] INFO DX: E74OW - Spotter: VK2GEL - Freq: 14020.1 - Band: 20M - Mode: CW - Comment: 11 dB 19 WPM CQ - Time: 0740Z - DXCC: 501 +[23-09-2024 14:40:55] INFO DX: EA1EYL - Spotter: ES2RR - Freq: 28008.5 - Band: 10M - Mode: CW - Comment: 13 dB 20 WPM CQ - Time: 0740Z - DXCC: 281 +[23-09-2024 14:40:57] INFO DX: VR2B - Spotter: DF2CK - Freq: 24930.0 - Band: 12M - Mode: CW - Comment: 7 dB 23 WPM NCDXF BCN - Time: 0740Z - DXCC: 321 +[23-09-2024 14:40:57] INFO DX: F5NZY - Spotter: VK2EBN - Freq: 14023.5 - Band: 20M - Mode: CW - Comment: 64 dB 26 WPM CQ - Time: 0740Z - DXCC: 227 +[23-09-2024 14:40:59] INFO DX: N4ET - Spotter: MM3NDH - Freq: 14007.8 - Band: 20M - Mode: CW - Comment: 22 dB 42 WPM CQ - Time: 0740Z - DXCC: 291 +[23-09-2024 14:41:01] INFO DX: MS0NYM - Spotter: EA5RQ - Freq: 14007.0 - Band: 20M - Mode: CW - Comment: 11 dB 22 WPM CQ - Time: 0741Z - DXCC: 279 +[23-09-2024 14:41:01] INFO (** New Mode **) DX: R0CDV - Spotter: R6JY - Freq: 28544.9 - Band: 10M - Mode: - Comment: - Time: 0741Z - DXCC: 15 +[23-09-2024 14:41:02] INFO (** New Mode **) DX: UA6HML - Spotter: UA6HML - Freq: 14162.0 - Band: 20M - Mode: - Comment: MDXC - Time: 0741Z - DXCC: 54 +[23-09-2024 14:41:04] INFO DX: VK2BJ - Spotter: KM3T - Freq: 14023.5 - Band: 20M - Mode: CW - Comment: 26 dB 23 WPM CQ - Time: 0741Z - DXCC: 150 +[23-09-2024 14:41:05] INFO DX: HA5AEK - Spotter: OH4KA - Freq: 10116.0 - Band: 30M - Mode: CW - Comment: 15 dB 16 WPM CQ - Time: 0741Z - DXCC: 239 +[23-09-2024 14:41:06] INFO DX: RL7C - Spotter: LA7GIA - Freq: 28010.9 - Band: 10M - Mode: CW - Comment: 15 dB 28 WPM CQ - Time: 0741Z - DXCC: 54 +[23-09-2024 14:41:06] INFO DX: PA3BUL - Spotter: IK4VET - Freq: 14095.8 - Band: 20M - Mode: CW - Comment: 17 dB 15 WPM CQ - Time: 0741Z - DXCC: 263 +[23-09-2024 14:41:07] INFO DX: OM3MV - Spotter: CT7ANO - Freq: 24893.9 - Band: 12M - Mode: CW - Comment: 10 dB 26 WPM CQ - Time: 0741Z - DXCC: 504 +[23-09-2024 14:41:08] INFO DX: OE5GYL - Spotter: G4IRN - Freq: 18077.0 - Band: 17M - Mode: CW - Comment: 37 dB 20 WPM CQ - Time: 0741Z - DXCC: 206 +[23-09-2024 14:41:08] INFO (** Worked **) DX: 7K4VPV - Spotter: DF2CK - Freq: 28032.0 - Band: 10M - Mode: CW - Comment: 4 dB 25 WPM CQ - Time: 0741Z - DXCC: 339 +[23-09-2024 14:41:08] INFO DX: 7K4VPV - Spotter: DF2CK - Freq: 28032.0 - Band: 10M - Mode: CW - Comment: 4 dB 25 WPM CQ - Time: 0741Z - DXCC: 339 +[23-09-2024 14:41:09] INFO DX: OE5GYL - Spotter: DF2CK - Freq: 18077.0 - Band: 17M - Mode: CW - Comment: 7 dB 19 WPM CQ - Time: 0741Z - DXCC: 206 +[23-09-2024 14:41:09] INFO DX: R100AR - Spotter: BA6KC - Freq: 21054.0 - Band: 15M - Mode: CW - Comment: 12 dB 28 WPM CQ - Time: 0741Z - DXCC: 54 +[23-09-2024 14:41:10] INFO DX: RX0F - Spotter: LZ5DI - Freq: 28043.9 - Band: 10M - Mode: CW - Comment: 4 dB 31 WPM CQ - Time: 0741Z - DXCC: 15 +[23-09-2024 14:41:16] INFO config loaded. +[23-09-2024 14:41:16] INFO Callsign: XV9Q + +[23-09-2024 14:41:16] INFO deleting existing database +[23-09-2024 14:41:16] INFO Opening SQLite database +[23-09-2024 14:41:16] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:41:16] INFO connected to 10.10.10.120:4992 +[23-09-2024 14:41:19] INFO R command: 1 - FlexSpotNumber: +[23-09-2024 14:41:19] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:41:20] INFO Found login prompt...sending callsign +[23-09-2024 14:41:22] INFO Skimmer is on as defined in the config file +[23-09-2024 14:41:22] INFO FT8 is off as defined in the config file +[23-09-2024 14:41:23] INFO DX: SA7MAX - Spotter: 2E0INH - Freq: 14025.0 - Band: 20M - Mode: CW - Comment: 8 dB 21 WPM CQ - Time: 0741Z - DXCC: 284 +[23-09-2024 14:41:23] INFO DX: R12RED - Spotter: 2E0INH - Freq: 14021.9 - Band: 20M - Mode: CW - Comment: 23 dB 26 WPM CQ - Time: 0741Z - DXCC: 54 +[23-09-2024 14:41:24] INFO DX: SA7MAX - Spotter: ON6ZQ - Freq: 14025.0 - Band: 20M - Mode: CW - Comment: 7 dB 21 WPM CQ - Time: 0741Z - DXCC: 284 +[23-09-2024 14:41:24] INFO DX: WB2DHY - Spotter: K7CO - Freq: 7033.0 - Band: 40M - Mode: CW - Comment: 16 dB 20 WPM CQ - Time: 0741Z - DXCC: 291 +[23-09-2024 14:41:24] INFO DX: WB2DHY - Spotter: TI7W - Freq: 7033.0 - Band: 40M - Mode: CW - Comment: 32 dB 20 WPM CQ - Time: 0741Z - DXCC: 291 +[23-09-2024 14:41:25] INFO DX: MS0NYM - Spotter: OK1FCJ - Freq: 14007.0 - Band: 20M - Mode: CW - Comment: 12 dB 22 WPM CQ - Time: 0741Z - DXCC: 279 +[23-09-2024 14:41:25] INFO DX: CS3B - Spotter: DD5XX - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 17 dB 20 WPM NCDXF BCN - Time: 0741Z - DXCC: 256 +[23-09-2024 14:41:26] INFO DX: OH2B - Spotter: MM0ZBH - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 22 dB 22 WPM NCDXF BCN - Time: 0741Z - DXCC: 997 +[23-09-2024 14:41:26] INFO DX: UR7VT - Spotter: ES2RR - Freq: 14063.0 - Band: 20M - Mode: CW - Comment: 9 dB 17 WPM CQ - Time: 0741Z - DXCC: 288 +[23-09-2024 14:41:33] INFO DX: G4HOM - Spotter: OH6BG - Freq: 21012.6 - Band: 15M - Mode: CW - Comment: 46 dB 23 WPM CQ - Time: 0741Z - DXCC: 223 +[23-09-2024 14:41:35] INFO DX: G4DN - Spotter: OK1FCJ - Freq: 14055.5 - Band: 20M - Mode: CW - Comment: 12 dB 14 WPM CQ - Time: 0741Z - DXCC: 223 +[23-09-2024 14:41:37] INFO DX: OH2B - Spotter: G4ZFE - Freq: 21150.0 - Band: 15M - Mode: CW - Comment: 16 dB 21 WPM NCDXF BCN - Time: 0741Z - DXCC: 997 +[23-09-2024 14:41:37] INFO DX: 2E0CNJ - Spotter: DF2CK - Freq: 14011.0 - Band: 20M - Mode: CW - Comment: 16 dB 20 WPM CQ - Time: 0741Z - DXCC: 223 +[23-09-2024 14:41:39] INFO DX: 2E0CNJ - Spotter: SM7IUN - Freq: 14011.0 - Band: 20M - Mode: CW - Comment: 26 dB 20 WPM CQ - Time: 0741Z - DXCC: 223 +[23-09-2024 14:41:42] INFO DX: SA6RR - Spotter: DL8LAS - Freq: 10130.9 - Band: 30M - Mode: CW - Comment: 11 dB 17 WPM BEACON - Time: 0741Z - DXCC: 284 +[23-09-2024 14:41:43] INFO (** New Band **) DX: CS3B - Spotter: DL8LAS - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 17 dB 22 WPM NCDXF BCN - Time: 0741Z - DXCC: 256 +[23-09-2024 14:41:44] INFO DX: JA8LAQ - Spotter: 7N4XCV - Freq: 7011.0 - Band: 40M - Mode: CW - Comment: 12 dB 16 WPM CQ - Time: 0741Z - DXCC: 339 +[23-09-2024 14:41:45] INFO DX: OE5GYL - Spotter: OK1FCJ - Freq: 18077.0 - Band: 17M - Mode: CW - Comment: 11 dB 19 WPM CQ - Time: 0741Z - DXCC: 206 +[23-09-2024 14:41:48] INFO DX: OH2B - Spotter: LZ4AE - Freq: 24930.0 - Band: 12M - Mode: CW - Comment: 18 dB 22 WPM NCDXF BCN - Time: 0741Z - DXCC: 997 +[23-09-2024 14:41:53] INFO config loaded. +[23-09-2024 14:41:53] INFO Callsign: XV9Q + +[23-09-2024 14:41:53] INFO deleting existing database +[23-09-2024 14:41:53] INFO Opening SQLite database +[23-09-2024 14:41:53] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:41:53] INFO connected to 10.10.10.120:4992 +[23-09-2024 14:41:56] INFO R command: 1 - FlexSpotNumber: +[23-09-2024 14:41:56] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:41:57] INFO Found login prompt...sending callsign +[23-09-2024 14:41:59] INFO Skimmer is on as defined in the config file +[23-09-2024 14:41:59] INFO FT8 is off as defined in the config file +[23-09-2024 14:42:00] INFO DX: DK7PE - Spotter: LZ4AE - Freq: 18070.0 - Band: 17M - Mode: CW - Comment: 28 dB 26 WPM CQ - Time: 0741Z - DXCC: 230 +[23-09-2024 14:42:00] INFO DX: DK7PE - Spotter: YO2MAX - Freq: 18069.9 - Band: 17M - Mode: CW - Comment: 41 dB 25 WPM CQ - Time: 0741Z - DXCC: 230 +[23-09-2024 14:42:01] INFO DX: DL5MAY - Spotter: YO4RDW - Freq: 14026.1 - Band: 20M - Mode: CW - Comment: 6 dB 14 WPM CQ - Time: 0741Z - DXCC: 230 +[23-09-2024 14:42:01] INFO DX: EA8VI - Spotter: S53WW - Freq: 14023.5 - Band: 20M - Mode: CW - Comment: 21 dB 23 WPM CQ - Time: 0741Z - DXCC: 29 +[23-09-2024 14:42:02] INFO (** New Band **) DX: IZ4BBH - Spotter: OE9GHV - Freq: 7012.0 - Band: 40M - Mode: CW - Comment: 34 dB 17 WPM CQ - Time: 0741Z - DXCC: 248 +[23-09-2024 14:42:02] INFO DX: PA3BUL - Spotter: W1NT - Freq: 14095.8 - Band: 20M - Mode: CW - Comment: 7 dB 15 WPM CQ - Time: 0742Z - DXCC: 263 +[23-09-2024 14:42:03] INFO DX: HA5AEK - Spotter: LZ3CB - Freq: 10116.0 - Band: 30M - Mode: CW - Comment: 5 dB 16 WPM CQ - Time: 0742Z - DXCC: 239 +[23-09-2024 14:42:06] INFO DX: UR7VT - Spotter: DD5XX - Freq: 14063.0 - Band: 20M - Mode: CW - Comment: 7 dB 17 WPM CQ - Time: 0742Z - DXCC: 288 +[23-09-2024 14:42:07] INFO (** New DXCC **) DX: 4U1UN - Spotter: IK4VET - Freq: 14100.1 - Band: 20M - Mode: CW - Comment: 13 dB 20 WPM NCDXF BCN - Time: 0742Z - DXCC: 289 +[23-09-2024 14:42:08] INFO DX: G4HOM - Spotter: YO2MAX - Freq: 21012.6 - Band: 15M - Mode: CW - Comment: 29 dB 22 WPM CQ - Time: 0742Z - DXCC: 223 +[23-09-2024 14:42:10] INFO DX: JA5TX - Spotter: BA6KC - Freq: 21025.0 - Band: 15M - Mode: CW - Comment: 24 dB 19 WPM CQ - Time: 0742Z - DXCC: 339 +[23-09-2024 14:42:12] INFO DX: WB2DHY - Spotter: VE6JY - Freq: 7033.0 - Band: 40M - Mode: CW - Comment: 30 dB 20 WPM CQ - Time: 0742Z - DXCC: 291 +[23-09-2024 14:42:16] INFO DX: SA7MAX - Spotter: HG0Y - Freq: 14025.1 - Band: 20M - Mode: CW - Comment: 15 dB 21 WPM CQ - Time: 0742Z - DXCC: 284 +[23-09-2024 14:42:17] INFO DX: UT2IT - Spotter: IK4VET - Freq: 21065.2 - Band: 15M - Mode: CW - Comment: 3 dB 24 WPM CQ - Time: 0742Z - DXCC: 288 +[23-09-2024 14:42:17] INFO DX: MS0NYM - Spotter: OK4QRO - Freq: 14007.1 - Band: 20M - Mode: CW - Comment: 15 dB 22 WPM CQ - Time: 0742Z - DXCC: 279 +[23-09-2024 14:42:18] INFO DX: ON6MG - Spotter: ZL3X - Freq: 14015.9 - Band: 20M - Mode: CW - Comment: 19 dB 24 WPM CQ - Time: 0742Z - DXCC: 209 +[23-09-2024 14:42:19] INFO DX: JI3ICY - Spotter: BG2TFW - Freq: 7011.4 - Band: 40M - Mode: CW - Comment: 4 dB 16 WPM CQ - Time: 0742Z - DXCC: 339 +[23-09-2024 14:42:20] INFO DX: 8J1FC - Spotter: W6YX - Freq: 7012.0 - Band: 40M - Mode: CW - Comment: 12 dB 22 WPM CQ - Time: 0742Z - DXCC: 339 +[23-09-2024 14:42:20] INFO DX: YE8FOR - Spotter: BA6KC - Freq: 21023.9 - Band: 15M - Mode: CW - Comment: 8 dB 20 WPM CQ - Time: 0742Z - DXCC: 327 +[23-09-2024 14:42:22] INFO (** New Mode **) DX: UA3SCU - Spotter: UA3SCU - Freq: 14156.0 - Band: 20M - Mode: - Comment: M-DX - Time: 0742Z - DXCC: 54 +[23-09-2024 14:42:23] INFO DX: OE3KAB - Spotter: RK3TD - Freq: 14040.0 - Band: 20M - Mode: CW - Comment: 25 dB 18 WPM CQ - Time: 0742Z - DXCC: 206 +[23-09-2024 14:42:24] INFO (** New DXCC **) DX: 4U1UN - Spotter: TI7W - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 20 dB 22 WPM NCDXF BCN - Time: 0742Z - DXCC: 289 +[23-09-2024 14:42:25] INFO DX: OE5GYL - Spotter: OH6BG - Freq: 18077.0 - Band: 17M - Mode: CW - Comment: 20 dB 19 WPM CQ - Time: 0742Z - DXCC: 206 +[23-09-2024 14:42:27] INFO DX: JA2GWL - Spotter: JK1QLQ - Freq: 7008.1 - Band: 40M - Mode: CW - Comment: 22 dB 24 WPM CQ - Time: 0742Z - DXCC: 339 +[23-09-2024 14:42:29] INFO DX: JA2GWL - Spotter: BG2TFW - Freq: 7008.0 - Band: 40M - Mode: CW - Comment: 8 dB 25 WPM CQ - Time: 0742Z - DXCC: 339 +[23-09-2024 14:42:37] INFO config loaded. +[23-09-2024 14:42:37] INFO Callsign: XV9Q + +[23-09-2024 14:42:37] INFO deleting existing database +[23-09-2024 14:42:37] INFO Opening SQLite database +[23-09-2024 14:42:37] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:42:37] INFO connected to 10.10.10.120:4992 +[23-09-2024 14:42:37] INFO V1.4.0.0 + +[23-09-2024 14:42:37] INFO H253A0A8A + +[23-09-2024 14:42:37] INFO M10000001|Client connected from IP 10.10.10.163 + +[23-09-2024 14:42:37] INFO S253A0A8A|radio slices=3 panadapters=3 lineout_gain=33 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=16 alpha=0 low_latency_digital_modes=1 mf_enable=1 + +[23-09-2024 14:42:37] INFO S253A0A8A|radio filter_sharpness VOICE level=2 auto_level=1 + +[23-09-2024 14:42:37] INFO S253A0A8A|radio filter_sharpness CW level=2 auto_level=1 + +[23-09-2024 14:42:37] INFO S253A0A8A|radio filter_sharpness DIGITAL level=0 auto_level=0 + +[23-09-2024 14:42:37] INFO S253A0A8A|radio static_net_params ip= gateway= netmask= + +[23-09-2024 14:42:37] INFO S253A0A8A|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 + +[23-09-2024 14:42:37] INFO S253A0A8A|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=0 tx1_enabled=1 tx2_enabled=0 tx3_enabled=0 tx_delay=35 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 + +[23-09-2024 14:42:37] INFO S253A0A8A|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 + +[23-09-2024 14:42:37] INFO S253A0A8A|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 + +[23-09-2024 14:42:37] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:42:37] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= + +[23-09-2024 14:42:38] INFO Found login prompt...sending callsign +[23-09-2024 14:42:40] INFO Skimmer is on as defined in the config file +[23-09-2024 14:42:40] INFO FT8 is off as defined in the config file +[23-09-2024 14:42:41] INFO DX: UT2IT - Spotter: S53WW - Freq: 21065.1 - Band: 15M - Mode: CW - Comment: 5 dB 25 WPM CQ - Time: 0742Z - DXCC: 288 +[23-09-2024 14:42:41] INFO R1|0|162 + +[23-09-2024 14:42:41] INFO DX: DK7PE - Spotter: OE9GHV - Freq: 18070.0 - Band: 17M - Mode: CW - Comment: 8 dB 25 WPM CQ - Time: 0742Z - DXCC: 230 +[23-09-2024 14:42:41] INFO R2|0|144 + +[23-09-2024 14:42:46] INFO DX: WB2DHY - Spotter: AA0O - Freq: 7033.0 - Band: 40M - Mode: CW - Comment: 15 dB 20 WPM CQ - Time: 0742Z - DXCC: 291 +[23-09-2024 14:42:46] INFO R3|0|134 + +[23-09-2024 14:42:47] INFO (** Worked **) DX: JQ2JNQ - Spotter: VK2GEL - Freq: 21033.1 - Band: 15M - Mode: CW - Comment: 15 dB 19 WPM CQ - Time: 0742Z - DXCC: 339 +[23-09-2024 14:42:47] INFO DX: JQ2JNQ - Spotter: VK2GEL - Freq: 21033.1 - Band: 15M - Mode: CW - Comment: 15 dB 19 WPM CQ - Time: 0742Z - DXCC: 339 +[23-09-2024 14:42:47] INFO R4|0|163 + +[23-09-2024 14:42:49] INFO DX: MS0NYM - Spotter: VK3RASA - Freq: 14007.0 - Band: 20M - Mode: CW - Comment: 17 dB 22 WPM CQ - Time: 0742Z - DXCC: 279 +[23-09-2024 14:42:49] INFO R5|0|63 + +[23-09-2024 14:42:51] INFO DX: HA5AEK - Spotter: DK9IP - Freq: 10116.0 - Band: 30M - Mode: CW - Comment: 4 dB 16 WPM CQ - Time: 0742Z - DXCC: 239 +[23-09-2024 14:42:51] INFO R6|0|107 + +[23-09-2024 14:42:52] INFO DX: E74OW - Spotter: EA1URA - Freq: 14020.0 - Band: 20M - Mode: CW - Comment: 18 dB 20 WPM CQ - Time: 0742Z - DXCC: 501 +[23-09-2024 14:42:52] INFO R7|0|62 + +[23-09-2024 14:42:52] INFO DX: ZL6B - Spotter: VK2RH - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 10 dB 22 WPM NCDXF BCN - Time: 0742Z - DXCC: 170 +[23-09-2024 14:42:52] INFO R8|0|83 + +[23-09-2024 14:42:54] INFO DX: EA8VI - Spotter: IK3STG - Freq: 14023.5 - Band: 20M - Mode: CW - Comment: 19 dB 26 WPM CQ - Time: 0742Z - DXCC: 29 +[23-09-2024 14:42:54] INFO R9|0|147 + +[23-09-2024 14:49:29] INFO config loaded. +[23-09-2024 14:49:29] INFO Callsign: XV9Q + +[23-09-2024 14:49:29] INFO deleting existing database +[23-09-2024 14:49:29] INFO Opening SQLite database +[23-09-2024 14:49:29] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:49:29] INFO connected to 10.10.10.120:4992 +[23-09-2024 14:49:29] INFO V1.4.0.0 + +[23-09-2024 14:49:29] INFO H27310AEF + +[23-09-2024 14:49:29] INFO M10000001|Client connected from IP 10.10.10.163 + +[23-09-2024 14:49:29] INFO S27310AEF|radio slices=3 panadapters=3 lineout_gain=33 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=16 alpha=0 low_latency_digital_modes=1 mf_enable=1 + +[23-09-2024 14:49:29] INFO S27310AEF|radio filter_sharpness VOICE level=2 auto_level=1 + +[23-09-2024 14:49:29] INFO S27310AEF|radio filter_sharpness CW level=2 auto_level=1 + +[23-09-2024 14:49:29] INFO S27310AEF|radio filter_sharpness DIGITAL level=0 auto_level=0 + +[23-09-2024 14:49:29] INFO S27310AEF|radio static_net_params ip= gateway= netmask= + +[23-09-2024 14:49:29] INFO S27310AEF|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 + +[23-09-2024 14:49:29] INFO S27310AEF|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=0 tx1_enabled=1 tx2_enabled=0 tx3_enabled=0 tx_delay=35 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 + +[23-09-2024 14:49:29] INFO S27310AEF|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 + +[23-09-2024 14:49:29] INFO S27310AEF|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 + +[23-09-2024 14:49:29] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= + +[23-09-2024 14:49:30] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:49:30] INFO Found login prompt...sending callsign +[23-09-2024 14:49:32] INFO Skimmer is on as defined in the config file +[23-09-2024 14:49:32] INFO FT8 is off as defined in the config file +[23-09-2024 14:49:34] INFO DX: VK2DVA - Spotter: DF2CK - Freq: 28050.1 - Band: 10M - Mode: CW - Comment: 6 dB 17 WPM CQ - Time: 0749Z - DXCC: 150 +[23-09-2024 14:49:34] INFO DX: VK2DVA - Spotter: DF2CK - Freq: 28.050100 - Band: 10M - Mode: CW - CommandNumber: 1 - FlexSpotNumber: 0 +[23-09-2024 14:49:34] INFO R1|0|164 + +[23-09-2024 14:49:35] INFO DX: JI2WPM - Spotter: OH6BG - Freq: 21022.0 - Band: 15M - Mode: CW - Comment: 8 dB 19 WPM CQ - Time: 0749Z - DXCC: 339 +[23-09-2024 14:49:35] INFO DX: JI2WPM - Spotter: OH6BG - Freq: 21.022000 - Band: 15M - Mode: CW - CommandNumber: 2 - FlexSpotNumber: 0 +[23-09-2024 14:49:35] INFO R2|0|165 + +[23-09-2024 14:49:36] INFO DX: OH8KA - Spotter: LZ5DI - Freq: 21030.4 - Band: 15M - Mode: CW - Comment: 15 dB 18 WPM CQ - Time: 0749Z - DXCC: 224 +[23-09-2024 14:49:36] INFO DX: OH8KA - Spotter: LZ5DI - Freq: 21.030400 - Band: 15M - Mode: CW - CommandNumber: 3 - FlexSpotNumber: 0 +[23-09-2024 14:49:36] INFO R3|0|166 + +[23-09-2024 14:49:36] INFO DX: OH8KA - Spotter: HB9DCO - Freq: 21030.4 - Band: 15M - Mode: CW - Comment: 7 dB 18 WPM CQ - Time: 0749Z - DXCC: 224 +[23-09-2024 14:49:36] INFO DX: OH8KA - Spotter: HB9DCO - Freq: 21.030400 - Band: 15M - Mode: CW - CommandNumber: 4 - FlexSpotNumber: 0 +[23-09-2024 14:49:37] INFO R4|0|166 + +[23-09-2024 14:49:37] INFO DX: DK7PE - Spotter: HA6PX - Freq: 14024.0 - Band: 20M - Mode: CW - Comment: 36 dB 22 WPM CQ - Time: 0749Z - DXCC: 230 +[23-09-2024 14:49:37] INFO DX: DK7PE - Spotter: HA6PX - Freq: 14.024000 - Band: 20M - Mode: CW - CommandNumber: 5 - FlexSpotNumber: 0 +[23-09-2024 14:49:37] INFO R5|0|167 + +[23-09-2024 14:49:38] INFO DX: MS0NYM - Spotter: EA1URA - Freq: 14007.0 - Band: 20M - Mode: CW - Comment: 9 dB 22 WPM CQ - Time: 0749Z - DXCC: 279 +[23-09-2024 14:49:38] INFO DX: MS0NYM - Spotter: EA1URA - Freq: 14.007000 - Band: 20M - Mode: CW - CommandNumber: 6 - FlexSpotNumber: 0 +[23-09-2024 14:49:38] INFO R6|0|168 + +[23-09-2024 14:49:40] INFO DX: OE3KAB - Spotter: DL8LAS - Freq: 14040.0 - Band: 20M - Mode: CW - Comment: 47 dB 22 WPM CQ - Time: 0749Z - DXCC: 206 +[23-09-2024 14:49:40] INFO DX: OE3KAB - Spotter: DL8LAS - Freq: 14.040000 - Band: 20M - Mode: CW - CommandNumber: 7 - FlexSpotNumber: 0 +[23-09-2024 14:49:40] INFO R7|0|169 + +[23-09-2024 14:49:41] INFO DX: VK2OT - Spotter: BA6KC - Freq: 28007.1 - Band: 10M - Mode: CW - Comment: 14 dB 24 WPM CQ - Time: 0749Z - DXCC: 150 +[23-09-2024 14:49:41] INFO DX: VK2OT - Spotter: BA6KC - Freq: 28.007100 - Band: 10M - Mode: CW - CommandNumber: 8 - FlexSpotNumber: 0 +[23-09-2024 14:49:41] INFO R8|0|170 + +[23-09-2024 14:49:45] INFO DX: E74OW - Spotter: OZ1AAB - Freq: 14020.0 - Band: 20M - Mode: CW - Comment: 11 dB 20 WPM CQ - Time: 0749Z - DXCC: 501 +[23-09-2024 14:49:45] INFO DX: E74OW - Spotter: OZ1AAB - Freq: 14.020000 - Band: 20M - Mode: CW - CommandNumber: 9 - FlexSpotNumber: 0 +[23-09-2024 14:49:45] INFO R9|0|171 + +[23-09-2024 14:49:46] INFO DX: IT9FRT - Spotter: DK9IP - Freq: 14050.0 - Band: 20M - Mode: CW - Comment: 8 dB 18 WPM CQ - Time: 0749Z - DXCC: 248 +[23-09-2024 14:49:46] INFO DX: IT9FRT - Spotter: DK9IP - Freq: 14.050000 - Band: 20M - Mode: CW - CommandNumber: 10 - FlexSpotNumber: 0 +[23-09-2024 14:49:46] INFO R10|0|172 + +[23-09-2024 14:49:48] INFO (** New Mode **) DX: R100AR - Spotter: OS8D - Freq: 28539.0 - Band: 10M - Mode: - Comment: - Time: 0749Z - DXCC: 54 +[23-09-2024 14:49:48] INFO DX: R100AR - Spotter: OS8D - Freq: 28.539000 - Band: 10M - Mode: - CommandNumber: 11 - FlexSpotNumber: 0 +[23-09-2024 14:49:48] INFO R11|0|173 + +[23-09-2024 14:49:49] INFO (** New Mode **) DX: IS0AFM - Spotter: F4GOU - Freq: 7025.0 - Band: 40M - Mode: CW - Comment: 13 dB 27 WPM CQ - Time: 0749Z - DXCC: 225 +[23-09-2024 14:49:49] INFO DX: IS0AFM - Spotter: F4GOU - Freq: 7.025000 - Band: 40M - Mode: CW - CommandNumber: 12 - FlexSpotNumber: 0 +[23-09-2024 14:49:49] INFO R12|0|174 + +[23-09-2024 14:51:16] INFO config loaded. +[23-09-2024 14:51:16] INFO Callsign: XV9Q + +[23-09-2024 14:51:16] INFO deleting existing database +[23-09-2024 14:51:16] INFO Opening SQLite database +[23-09-2024 14:51:16] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 14:51:16] INFO connected to 10.10.10.120:4992 +[23-09-2024 14:51:16] INFO V1.4.0.0 +[23-09-2024 14:51:16] INFO H56A3CBB6 +[23-09-2024 14:51:16] INFO M10000001|Client connected from IP 10.10.10.163 +[23-09-2024 14:51:16] INFO S56A3CBB6|radio slices=3 panadapters=3 lineout_gain=33 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=16 alpha=0 low_latency_digital_modes=1 mf_enable=1 +[23-09-2024 14:51:16] INFO S56A3CBB6|radio filter_sharpness VOICE level=2 auto_level=1 +[23-09-2024 14:51:16] INFO S56A3CBB6|radio filter_sharpness CW level=2 auto_level=1 +[23-09-2024 14:51:16] INFO S56A3CBB6|radio filter_sharpness DIGITAL level=0 auto_level=0 +[23-09-2024 14:51:16] INFO S56A3CBB6|radio static_net_params ip= gateway= netmask= +[23-09-2024 14:51:16] INFO S56A3CBB6|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 +[23-09-2024 14:51:16] INFO S56A3CBB6|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=0 tx1_enabled=1 tx2_enabled=0 tx3_enabled=0 tx_delay=35 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 +[23-09-2024 14:51:16] INFO S56A3CBB6|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 +[23-09-2024 14:51:16] INFO S56A3CBB6|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 +[23-09-2024 14:51:16] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= +[23-09-2024 14:51:17] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 14:51:17] INFO Found login prompt...sending callsign +[23-09-2024 14:51:19] INFO Skimmer is on as defined in the config file +[23-09-2024 14:51:19] INFO FT8 is off as defined in the config file +[23-09-2024 14:51:20] INFO DX: SA6AUT - Spotter: HA8TKS - Freq: 18075.0 - Band: 17M - Mode: CW - Comment: 17 dB 21 WPM CQ - Time: 0751Z - DXCC: 284 +[23-09-2024 14:51:20] INFO DX: SA6AUT - Spotter: HA8TKS - Freq: 18.075000 - Band: 17M - Mode: CW - CommandNumber: 1 - FlexSpotNumber: 0 +[23-09-2024 14:51:21] INFO R1|0|175 +[23-09-2024 14:51:21] INFO (** New Band **) DX: M6MPC - Spotter: GI4DOH - Freq: 7028.0 - Band: 40M - Mode: CW - Comment: 12 dB 22 WPM CQ - Time: 0751Z - DXCC: 223 +[23-09-2024 14:51:21] INFO DX: M6MPC - Spotter: GI4DOH - Freq: 7.028000 - Band: 40M - Mode: CW - CommandNumber: 2 - FlexSpotNumber: 0 +[23-09-2024 14:51:21] INFO R2|0|176 +[23-09-2024 14:51:22] INFO DX: IT9FRT - Spotter: F6KGL - Freq: 14050.0 - Band: 20M - Mode: CW - Comment: 9 dB 18 WPM CQ - Time: 0751Z - DXCC: 248 +[23-09-2024 14:51:22] INFO DX: IT9FRT - Spotter: F6KGL - Freq: 14.050000 - Band: 20M - Mode: CW - CommandNumber: 3 - FlexSpotNumber: 0 +[23-09-2024 14:51:22] INFO R3|0|172 +[23-09-2024 14:51:22] INFO (** New Mode **) DX: IS0AFM - Spotter: G0KTN - Freq: 7025.0 - Band: 40M - Mode: CW - Comment: 22 dB 27 WPM CQ - Time: 0751Z - DXCC: 225 +[23-09-2024 14:51:22] INFO DX: IS0AFM - Spotter: G0KTN - Freq: 7.025000 - Band: 40M - Mode: CW - CommandNumber: 4 - FlexSpotNumber: 0 +[23-09-2024 14:51:22] INFO R4|0|174 +[23-09-2024 14:51:23] INFO (** New Band **) DX: HA0IU - Spotter: OE9GHV - Freq: 7002.0 - Band: 40M - Mode: CW - Comment: 20 dB 18 WPM CQ - Time: 0751Z - DXCC: 239 +[23-09-2024 14:51:23] INFO DX: HA0IU - Spotter: OE9GHV - Freq: 7.002000 - Band: 40M - Mode: CW - CommandNumber: 5 - FlexSpotNumber: 0 +[23-09-2024 14:51:23] INFO R5|0|177 +[23-09-2024 14:51:23] INFO (** Worked **) DX: E77DX - Spotter: DL0LA - Freq: 28027.0 - Band: 10M - Mode: CW - Comment: 10 dB 30 WPM CQ - Time: 0751Z - DXCC: 501 +[23-09-2024 14:51:23] INFO DX: E77DX - Spotter: DL0LA - Freq: 28027.0 - Band: 10M - Mode: CW - Comment: 10 dB 30 WPM CQ - Time: 0751Z - DXCC: 501 +[23-09-2024 14:51:23] INFO DX: E77DX - Spotter: DL0LA - Freq: 28.027000 - Band: 10M - Mode: CW - CommandNumber: 6 - FlexSpotNumber: 0 +[23-09-2024 14:51:23] INFO R6|0|178 +[23-09-2024 14:51:24] INFO DX: DL7VDE - Spotter: RN4WA - Freq: 28030.5 - Band: 10M - Mode: CW - Comment: 28 dB 22 WPM CQ - Time: 0751Z - DXCC: 230 +[23-09-2024 14:51:24] INFO DX: DL7VDE - Spotter: RN4WA - Freq: 28.030500 - Band: 10M - Mode: CW - CommandNumber: 7 - FlexSpotNumber: 0 +[23-09-2024 14:51:24] INFO R7|0|179 +[23-09-2024 14:51:24] INFO (** New Mode **) DX: IY4OTR - Spotter: ON4ROL - Freq: 7113.0 - Band: 40M - Mode: - Comment: tnx for contact 73 - Time: 0751Z - DXCC: 248 +[23-09-2024 14:51:24] INFO DX: IY4OTR - Spotter: ON4ROL - Freq: 7.113000 - Band: 40M - Mode: - CommandNumber: 8 - FlexSpotNumber: 0 +[23-09-2024 14:51:24] INFO R8|0|180 +[23-09-2024 14:51:25] INFO DX: RD3AC - Spotter: SV1DPJ - Freq: 14018.9 - Band: 20M - Mode: CW - Comment: 19 dB 27 WPM CQ - Time: 0751Z - DXCC: 54 +[23-09-2024 14:51:25] INFO DX: RD3AC - Spotter: SV1DPJ - Freq: 14.018900 - Band: 20M - Mode: CW - CommandNumber: 9 - FlexSpotNumber: 0 +[23-09-2024 14:51:25] INFO R9|0|181 +[23-09-2024 14:51:26] INFO DX: G4DNP - Spotter: OK4QRO - Freq: 14055.5 - Band: 20M - Mode: CW - Comment: 6 dB 14 WPM CQ - Time: 0751Z - DXCC: 223 +[23-09-2024 14:51:26] INFO DX: G4DNP - Spotter: OK4QRO - Freq: 14.055500 - Band: 20M - Mode: CW - CommandNumber: 10 - FlexSpotNumber: 0 +[23-09-2024 14:51:26] INFO R10|0|182 +[23-09-2024 14:51:26] INFO DX: ON4XMJ - Spotter: HB9BXE - Freq: 10116.7 - Band: 30M - Mode: CW - Comment: 7 dB 21 WPM CQ - Time: 0751Z - DXCC: 209 +[23-09-2024 14:51:26] INFO DX: ON4XMJ - Spotter: HB9BXE - Freq: 10.116700 - Band: 30M - Mode: CW - CommandNumber: 11 - FlexSpotNumber: 0 +[23-09-2024 14:51:26] INFO R11|0|183 +[23-09-2024 14:51:27] INFO DX: VE8AT - Spotter: DF2CK - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 15 dB 21 WPM NCDXF BCN - Time: 0751Z - DXCC: 1000 +[23-09-2024 14:51:27] INFO DX: VE8AT - Spotter: DF2CK - Freq: 18.110000 - Band: 17M - Mode: CW - CommandNumber: 12 - FlexSpotNumber: 0 +[23-09-2024 14:51:27] INFO R12|0|184 +[23-09-2024 14:51:28] INFO DX: JR7KSZ - Spotter: W6YX - Freq: 7010.0 - Band: 40M - Mode: CW - Comment: 16 dB 17 WPM CQ - Time: 0751Z - DXCC: 339 +[23-09-2024 14:51:28] INFO DX: JR7KSZ - Spotter: W6YX - Freq: 7.010000 - Band: 40M - Mode: CW - CommandNumber: 13 - FlexSpotNumber: 0 +[23-09-2024 14:51:28] INFO R13|0|185 +[23-09-2024 14:51:30] INFO DX: ON6MG - Spotter: MW0MUT - Freq: 14016.0 - Band: 20M - Mode: CW - Comment: 4 dB 24 WPM CQ - Time: 0751Z - DXCC: 209 +[23-09-2024 14:51:30] INFO DX: ON6MG - Spotter: MW0MUT - Freq: 14.016000 - Band: 20M - Mode: CW - CommandNumber: 14 - FlexSpotNumber: 0 +[23-09-2024 14:51:30] INFO R14|0|186 +[23-09-2024 15:17:24] INFO config loaded. +[23-09-2024 15:17:24] INFO Callsign: XV9Q + +[23-09-2024 15:17:24] INFO deleting existing database +[23-09-2024 15:17:24] INFO Opening SQLite database +[23-09-2024 15:17:24] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 15:17:24] INFO connected to 10.10.10.120:4992 +[23-09-2024 15:17:24] INFO V1.4.0.0 +[23-09-2024 15:18:00] INFO config loaded. +[23-09-2024 15:18:00] INFO Callsign: XV9Q + +[23-09-2024 15:18:00] INFO deleting existing database +[23-09-2024 15:18:00] INFO Opening SQLite database +[23-09-2024 15:18:00] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 15:18:00] INFO connected to 10.10.10.120:4992 +[23-09-2024 15:18:00] INFO V1.4.0.0 +[23-09-2024 15:19:02] INFO config loaded. +[23-09-2024 15:19:02] INFO Callsign: XV9Q + +[23-09-2024 15:19:02] INFO deleting existing database +[23-09-2024 15:19:02] INFO Opening SQLite database +[23-09-2024 15:19:02] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 15:19:02] INFO connected to 10.10.10.120:4992 +[23-09-2024 15:19:02] INFO V1.4.0.0 +[23-09-2024 15:19:34] INFO config loaded. +[23-09-2024 15:19:34] INFO Callsign: XV9Q + +[23-09-2024 15:19:34] INFO deleting existing database +[23-09-2024 15:19:34] INFO Opening SQLite database +[23-09-2024 15:19:34] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 15:19:34] INFO connected to 10.10.10.120:4992 +[23-09-2024 15:19:34] INFO V1.4.0.0 +[23-09-2024 15:19:34] INFO H34AB0D78 +[23-09-2024 15:19:34] INFO M10000001|Client connected from IP 10.10.10.163 +[23-09-2024 15:19:34] INFO S34AB0D78|radio slices=3 panadapters=3 lineout_gain=33 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=16 alpha=0 low_latency_digital_modes=1 mf_enable=1 +[23-09-2024 15:19:34] INFO S34AB0D78|radio filter_sharpness VOICE level=2 auto_level=1 +[23-09-2024 15:19:34] INFO S34AB0D78|radio filter_sharpness CW level=2 auto_level=1 +[23-09-2024 15:19:34] INFO S34AB0D78|radio filter_sharpness DIGITAL level=0 auto_level=0 +[23-09-2024 15:19:34] INFO S34AB0D78|radio static_net_params ip= gateway= netmask= +[23-09-2024 15:19:34] INFO S34AB0D78|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 +[23-09-2024 15:19:34] INFO S34AB0D78|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=0 tx1_enabled=1 tx2_enabled=0 tx3_enabled=0 tx_delay=35 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 +[23-09-2024 15:19:34] INFO S34AB0D78|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 +[23-09-2024 15:19:34] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= +[23-09-2024 15:19:34] INFO S34AB0D78|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 +[23-09-2024 15:19:35] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 15:19:35] INFO Found login prompt...sending callsign +[23-09-2024 15:19:37] INFO Skimmer is on as defined in the config file +[23-09-2024 15:19:37] INFO FT8 is off as defined in the config file +[23-09-2024 15:19:38] INFO DX: VK6RBP - Spotter: DF2CK - Freq: 28200.0 - Band: 10M - Mode: CW - Comment: 9 dB 22 WPM NCDXF BCN - Time: 0819Z - DXCC: 150 +[23-09-2024 15:19:38] INFO DX: VK6RBP - Spotter: DF2CK - Freq: 28.200000 - Band: 10M - Mode: CW - CommandNumber: 1 - FlexSpotNumber: 0 +[23-09-2024 15:19:38] INFO R1|0|187 +[23-09-2024 15:19:38] INFO R command: 0 - FlexSpotNumber: 0 +[23-09-2024 15:19:39] INFO DX: DL1LBV - Spotter: ES2RR - Freq: 14018.0 - Band: 20M - Mode: CW - Comment: 18 dB 24 WPM CQ - Time: 0819Z - DXCC: 230 +[23-09-2024 15:19:39] INFO DX: DL1LBV - Spotter: ES2RR - Freq: 14.018000 - Band: 20M - Mode: CW - CommandNumber: 2 - FlexSpotNumber: 0 +[23-09-2024 15:19:46] INFO DX: SA6AUT - Spotter: LZ4UX - Freq: 18075.0 - Band: 17M - Mode: CW - Comment: 9 dB 19 WPM CQ - Time: 0819Z - DXCC: 284 +[23-09-2024 15:19:46] INFO DX: SA6AUT - Spotter: LZ4UX - Freq: 18.075000 - Band: 17M - Mode: CW - CommandNumber: 3 - FlexSpotNumber: 0 +[23-09-2024 15:19:47] INFO DX: MS0NYM - Spotter: DF2CK - Freq: 14007.0 - Band: 20M - Mode: CW - Comment: 27 dB 22 WPM CQ - Time: 0819Z - DXCC: 279 +[23-09-2024 15:19:47] INFO DX: MS0NYM - Spotter: DF2CK - Freq: 14.007000 - Band: 20M - Mode: CW - CommandNumber: 4 - FlexSpotNumber: 0 +[23-09-2024 15:19:48] INFO DX: HB9FBT - Spotter: DF2CK - Freq: 14010.0 - Band: 20M - Mode: CW - Comment: 12 dB 24 WPM CQ - Time: 0819Z - DXCC: 287 +[23-09-2024 15:19:48] INFO DX: HB9FBT - Spotter: DF2CK - Freq: 14.010000 - Band: 20M - Mode: CW - CommandNumber: 5 - FlexSpotNumber: 0 +[23-09-2024 15:19:49] INFO DX: IK0HBN - Spotter: OG66X - Freq: 28041.0 - Band: 10M - Mode: CW - Comment: 23 dB 25 WPM CQ - Time: 0819Z - DXCC: 248 +[23-09-2024 15:19:49] INFO DX: IK0HBN - Spotter: OG66X - Freq: 28.041000 - Band: 10M - Mode: CW - CommandNumber: 6 - FlexSpotNumber: 0 +[23-09-2024 15:19:50] INFO (** New Band **) DX: IK4IDF - Spotter: S53WW - Freq: 7014.0 - Band: 40M - Mode: CW - Comment: 22 dB 19 WPM CQ - Time: 0819Z - DXCC: 248 +[23-09-2024 15:19:50] INFO DX: IK4IDF - Spotter: S53WW - Freq: 7.014000 - Band: 40M - Mode: CW - CommandNumber: 7 - FlexSpotNumber: 0 +[23-09-2024 15:19:51] INFO DX: IK0HBN - Spotter: R9IR - Freq: 28041.0 - Band: 10M - Mode: CW - Comment: 25 dB 25 WPM CQ - Time: 0819Z - DXCC: 248 +[23-09-2024 15:19:51] INFO DX: IK0HBN - Spotter: R9IR - Freq: 28.041000 - Band: 10M - Mode: CW - CommandNumber: 8 - FlexSpotNumber: 0 +[23-09-2024 15:19:55] INFO DX: RG5A - Spotter: DE1LON - Freq: 28029.0 - Band: 10M - Mode: CW - Comment: 2 dB 28 WPM CQ - Time: 0819Z - DXCC: 54 +[23-09-2024 15:19:55] INFO DX: RG5A - Spotter: DE1LON - Freq: 28.029000 - Band: 10M - Mode: CW - CommandNumber: 9 - FlexSpotNumber: 0 +[23-09-2024 15:19:56] INFO (** New Band **) DX: IK4IDF - Spotter: DL0PF - Freq: 7014.1 - Band: 40M - Mode: CW - Comment: 26 dB 20 WPM CQ - Time: 0819Z - DXCC: 248 +[23-09-2024 15:19:56] INFO DX: IK4IDF - Spotter: DL0PF - Freq: 7.014100 - Band: 40M - Mode: CW - CommandNumber: 10 - FlexSpotNumber: 0 +[23-09-2024 15:20:00] INFO DX: VR2B - Spotter: 9M2CNC - Freq: 24930.0 - Band: 12M - Mode: CW - Comment: 3 dB 22 WPM NCDXF BCN - Time: 0820Z - DXCC: 321 +[23-09-2024 15:20:00] INFO DX: VR2B - Spotter: 9M2CNC - Freq: 24.930000 - Band: 12M - Mode: CW - CommandNumber: 11 - FlexSpotNumber: 0 +[23-09-2024 15:20:01] INFO DX: RT2P - Spotter: R9IR - Freq: 28035.0 - Band: 10M - Mode: CW - Comment: 19 dB 24 WPM CQ - Time: 0820Z - DXCC: 54 +[23-09-2024 15:20:01] INFO DX: RT2P - Spotter: R9IR - Freq: 28.035000 - Band: 10M - Mode: CW - CommandNumber: 12 - FlexSpotNumber: 0 +[23-09-2024 15:20:06] INFO DX: UA6BLQ - Spotter: LZ4UX - Freq: 10103.2 - Band: 30M - Mode: CW - Comment: 13 dB 16 WPM CQ - Time: 0820Z - DXCC: 54 +[23-09-2024 15:20:06] INFO DX: UA6BLQ - Spotter: LZ4UX - Freq: 10.103200 - Band: 30M - Mode: CW - CommandNumber: 13 - FlexSpotNumber: 0 +[23-09-2024 15:20:06] INFO DX: ON4AHQ - Spotter: LZ4UX - Freq: 24895.4 - Band: 12M - Mode: CW - Comment: 27 dB 19 WPM CQ - Time: 0820Z - DXCC: 209 +[23-09-2024 15:20:06] INFO DX: ON4AHQ - Spotter: LZ4UX - Freq: 24.895400 - Band: 12M - Mode: CW - CommandNumber: 14 - FlexSpotNumber: 0 +[23-09-2024 15:20:08] INFO DX: JJ0TJS - Spotter: JH7CSU - Freq: 7012.8 - Band: 40M - Mode: CW - Comment: 21 dB 15 WPM CQ - Time: 0820Z - DXCC: 339 +[23-09-2024 15:20:08] INFO DX: JJ0TJS - Spotter: JH7CSU - Freq: 7.012800 - Band: 40M - Mode: CW - CommandNumber: 15 - FlexSpotNumber: 0 +[23-09-2024 15:20:15] INFO config loaded. +[23-09-2024 15:20:15] INFO Callsign: XV9Q + +[23-09-2024 15:20:15] INFO deleting existing database +[23-09-2024 15:20:15] INFO Opening SQLite database +[23-09-2024 15:20:15] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 15:20:15] INFO connected to 10.10.10.120:4992 +[23-09-2024 15:20:15] INFO V1.4.0.0 +[23-09-2024 15:20:15] INFO H4CFB5E55 +[23-09-2024 15:20:15] INFO M10000001|Client connected from IP 10.10.10.163 +[23-09-2024 15:20:15] INFO S4CFB5E55|radio slices=3 panadapters=3 lineout_gain=33 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=16 alpha=0 low_latency_digital_modes=1 mf_enable=1 +[23-09-2024 15:20:15] INFO S4CFB5E55|radio filter_sharpness VOICE level=2 auto_level=1 +[23-09-2024 15:20:15] INFO S4CFB5E55|radio filter_sharpness CW level=2 auto_level=1 +[23-09-2024 15:20:15] INFO S4CFB5E55|radio filter_sharpness DIGITAL level=0 auto_level=0 +[23-09-2024 15:20:15] INFO S4CFB5E55|radio static_net_params ip= gateway= netmask= +[23-09-2024 15:20:15] INFO S4CFB5E55|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 +[23-09-2024 15:20:15] INFO S4CFB5E55|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=0 tx1_enabled=1 tx2_enabled=0 tx3_enabled=0 tx_delay=35 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 +[23-09-2024 15:20:15] INFO S4CFB5E55|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 +[23-09-2024 15:20:15] INFO S4CFB5E55|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 +[23-09-2024 15:20:15] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= +[23-09-2024 15:20:15] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 15:20:16] INFO Found login prompt...sending callsign +[23-09-2024 15:20:18] INFO Skimmer is on as defined in the config file +[23-09-2024 15:20:18] INFO FT8 is off as defined in the config file +[23-09-2024 15:20:19] INFO DX: VK3RMH - Spotter: DF2CK - Freq: 28256.6 - Band: 10M - Mode: CW - Comment: 6 dB 15 WPM BEACON - Time: 0820Z - DXCC: 150 +[23-09-2024 15:20:19] INFO DX: VK3RMH - Spotter: DF2CK - Freq: 28.256600 - Band: 10M - Mode: CW - CommandNumber: 1 - FlexSpotNumber: 0 +[23-09-2024 15:20:19] INFO R1|0|201 +[23-09-2024 15:20:54] INFO config loaded. +[23-09-2024 15:20:54] INFO Callsign: XV9Q + +[23-09-2024 15:20:54] INFO deleting existing database +[23-09-2024 15:20:54] INFO Opening SQLite database +[23-09-2024 15:20:54] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 15:20:54] INFO connected to 10.10.10.120:4992 +[23-09-2024 15:20:54] INFO V1.4.0.0 +[23-09-2024 15:20:54] INFO H278DF882 +[23-09-2024 15:20:54] INFO M10000001|Client connected from IP 10.10.10.163 +[23-09-2024 15:20:54] INFO S278DF882|radio slices=3 panadapters=3 lineout_gain=33 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=16 alpha=0 low_latency_digital_modes=1 mf_enable=1 +[23-09-2024 15:20:54] INFO S278DF882|radio filter_sharpness VOICE level=2 auto_level=1 +[23-09-2024 15:20:54] INFO S278DF882|radio filter_sharpness CW level=2 auto_level=1 +[23-09-2024 15:20:54] INFO S278DF882|radio filter_sharpness DIGITAL level=0 auto_level=0 +[23-09-2024 15:20:54] INFO S278DF882|radio static_net_params ip= gateway= netmask= +[23-09-2024 15:20:54] INFO S278DF882|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 +[23-09-2024 15:20:54] INFO S278DF882|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=0 tx1_enabled=1 tx2_enabled=0 tx3_enabled=0 tx_delay=35 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 +[23-09-2024 15:20:54] INFO S278DF882|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 +[23-09-2024 15:20:54] INFO S278DF882|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 +[23-09-2024 15:20:54] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 15:20:54] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= +[23-09-2024 15:20:55] INFO Found login prompt...sending callsign +[23-09-2024 15:20:57] INFO Skimmer is on as defined in the config file +[23-09-2024 15:20:57] INFO FT8 is off as defined in the config file +[23-09-2024 15:20:58] INFO (** New Band **) DX: LZ1WR - Spotter: JN1ILK - Freq: 24900.0 - Band: 12M - Mode: CW - Comment: 25 dB 22 WPM CQ - Time: 0820Z - DXCC: 212 +[23-09-2024 15:20:58] INFO DX: LZ1WR - Spotter: JN1ILK - Freq: 24.900000 - Band: 12M - Mode: CW - CommandNumber: 1 - FlexSpotNumber: 0 +[23-09-2024 15:20:58] INFO R1|0|202 +[23-09-2024 15:41:36] INFO config loaded. +[23-09-2024 15:41:36] INFO Callsign: XV9Q + +[23-09-2024 15:41:36] INFO deleting existing database +[23-09-2024 15:41:36] INFO Opening SQLite database +[23-09-2024 15:41:36] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 15:41:36] INFO connected to 10.10.10.120:4992 +[23-09-2024 15:41:36] INFO V1.4.0.0 +[23-09-2024 15:41:36] INFO H4A252968 +[23-09-2024 15:41:36] INFO M10000001|Client connected from IP 10.10.10.163 +[23-09-2024 15:41:36] INFO S4A252968|radio slices=3 panadapters=3 lineout_gain=33 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=16 alpha=0 low_latency_digital_modes=1 mf_enable=1 +[23-09-2024 15:41:36] INFO S4A252968|radio filter_sharpness VOICE level=2 auto_level=1 +[23-09-2024 15:41:36] INFO S4A252968|radio filter_sharpness CW level=2 auto_level=1 +[23-09-2024 15:41:36] INFO S4A252968|radio filter_sharpness DIGITAL level=0 auto_level=0 +[23-09-2024 15:41:36] INFO S4A252968|radio static_net_params ip= gateway= netmask= +[23-09-2024 15:41:36] INFO S4A252968|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 +[23-09-2024 15:41:36] INFO S4A252968|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=0 tx1_enabled=1 tx2_enabled=0 tx3_enabled=0 tx_delay=35 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 +[23-09-2024 15:41:36] INFO S4A252968|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 +[23-09-2024 15:41:36] INFO S4A252968|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 +[23-09-2024 15:41:36] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= +[23-09-2024 15:41:37] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 15:41:38] INFO Found login prompt...sending callsign +[23-09-2024 15:41:40] INFO Skimmer is on as defined in the config file +[23-09-2024 15:41:40] INFO FT8 is off as defined in the config file +[23-09-2024 15:41:41] INFO DX: DT1IIT - Spotter: LZ4UX - Freq: 14022.0 - Band: 20M - Mode: CW - Comment: 6 dB 23 WPM CQ - Time: 0841Z - DXCC: 137 +[23-09-2024 15:41:41] INFO DX: DT1IIT - Spotter: LZ4UX - Freq: 14.022000 - Band: 20M - Mode: CW - CommandNumber: 1 - FlexSpotNumber: 0 +[23-09-2024 15:41:41] INFO R1|0|203 +[23-09-2024 15:41:41] INFO R command: 1 - FlexSpotNumber: 203 +[23-09-2024 15:41:41] INFO DX: W2PM - Spotter: W6YX - Freq: 10105.5 - Band: 30M - Mode: CW - Comment: 16 dB 25 WPM CQ - Time: 0841Z - DXCC: 291 +[23-09-2024 15:41:41] INFO DX: W2PM - Spotter: W6YX - Freq: 10.105500 - Band: 30M - Mode: CW - CommandNumber: 2 - FlexSpotNumber: 0 +[23-09-2024 15:41:41] INFO (** New Mode **) DX: EA4MN - Spotter: EA1MX - Freq: 7147.0 - Band: 40M - Mode: - Comment: dme:16214 mvcu-0884 - Time: 0841Z - DXCC: 281 +[23-09-2024 15:41:42] INFO DX: EA4MN - Spotter: EA1MX - Freq: 7.147000 - Band: 40M - Mode: - CommandNumber: 3 - FlexSpotNumber: 0 +[23-09-2024 15:41:43] INFO DX: HB9DAX - Spotter: DL8LAS - Freq: 14029.9 - Band: 20M - Mode: CW - Comment: 36 dB 23 WPM CQ - Time: 0841Z - DXCC: 287 +[23-09-2024 15:41:43] INFO DX: HB9DAX - Spotter: DL8LAS - Freq: 14.029900 - Band: 20M - Mode: CW - CommandNumber: 4 - FlexSpotNumber: 0 +[23-09-2024 15:41:44] INFO DX: OH2B - Spotter: HB9DCO - Freq: 21150.0 - Band: 15M - Mode: CW - Comment: 10 dB 22 WPM NCDXF BCN - Time: 0841Z - DXCC: 997 +[23-09-2024 15:41:44] INFO DX: OH2B - Spotter: HB9DCO - Freq: 21.150000 - Band: 15M - Mode: CW - CommandNumber: 5 - FlexSpotNumber: 0 +[23-09-2024 15:41:47] INFO DX: G3WZT - Spotter: DD5XX - Freq: 28016.6 - Band: 10M - Mode: CW - Comment: 11 dB 22 WPM CQ - Time: 0841Z - DXCC: 223 +[23-09-2024 15:41:47] INFO DX: G3WZT - Spotter: DD5XX - Freq: 28.016600 - Band: 10M - Mode: CW - CommandNumber: 6 - FlexSpotNumber: 0 +[23-09-2024 15:41:52] INFO DX: 7N3WEJ - Spotter: JH7CSU - Freq: 7005.0 - Band: 40M - Mode: CW - Comment: 21 dB 17 WPM CQ - Time: 0841Z - DXCC: 339 +[23-09-2024 15:41:52] INFO DX: 7N3WEJ - Spotter: JH7CSU - Freq: 7.005000 - Band: 40M - Mode: CW - CommandNumber: 7 - FlexSpotNumber: 0 +[23-09-2024 15:41:53] INFO DX: SM5COP - Spotter: JN1ILK - Freq: 18077.6 - Band: 17M - Mode: CW - Comment: 17 dB 24 WPM CQ - Time: 0841Z - DXCC: 284 +[23-09-2024 15:41:53] INFO DX: SM5COP - Spotter: JN1ILK - Freq: 18.077600 - Band: 17M - Mode: CW - CommandNumber: 8 - FlexSpotNumber: 0 +[23-09-2024 15:41:54] INFO DX: SM5EUU - Spotter: HB9DCO - Freq: 10118.1 - Band: 30M - Mode: CW - Comment: 3 dB 16 WPM CQ - Time: 0841Z - DXCC: 284 +[23-09-2024 15:41:54] INFO DX: SM5EUU - Spotter: HB9DCO - Freq: 10.118100 - Band: 30M - Mode: CW - CommandNumber: 9 - FlexSpotNumber: 0 +[23-09-2024 15:41:57] INFO (** New Mode **) DX: TZ4AM - Spotter: SP7SQM - Freq: 28018.0 - Band: 10M - Mode: - Comment: UP - Time: 0841Z - DXCC: 442 +[23-09-2024 15:41:57] INFO DX: TZ4AM - Spotter: SP7SQM - Freq: 28.018000 - Band: 10M - Mode: - CommandNumber: 10 - FlexSpotNumber: 0 +[23-09-2024 15:42:02] INFO config loaded. +[23-09-2024 15:42:02] INFO Callsign: XV9Q + +[23-09-2024 15:42:02] INFO deleting existing database +[23-09-2024 15:42:02] INFO Opening SQLite database +[23-09-2024 15:42:02] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 15:42:02] INFO connected to 10.10.10.120:4992 +[23-09-2024 15:42:02] INFO V1.4.0.0 +[23-09-2024 15:42:02] INFO H45D2098A +[23-09-2024 15:42:02] INFO M10000001|Client connected from IP 10.10.10.163 +[23-09-2024 15:42:02] INFO S45D2098A|radio slices=3 panadapters=3 lineout_gain=33 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=16 alpha=0 low_latency_digital_modes=1 mf_enable=1 +[23-09-2024 15:42:02] INFO S45D2098A|radio filter_sharpness VOICE level=2 auto_level=1 +[23-09-2024 15:42:02] INFO S45D2098A|radio filter_sharpness CW level=2 auto_level=1 +[23-09-2024 15:42:02] INFO S45D2098A|radio filter_sharpness DIGITAL level=0 auto_level=0 +[23-09-2024 15:42:02] INFO S45D2098A|radio static_net_params ip= gateway= netmask= +[23-09-2024 15:42:02] INFO S45D2098A|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 +[23-09-2024 15:42:02] INFO S45D2098A|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=0 tx1_enabled=1 tx2_enabled=0 tx3_enabled=0 tx_delay=35 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 +[23-09-2024 15:42:02] INFO S45D2098A|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 +[23-09-2024 15:42:02] INFO S45D2098A|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 +[23-09-2024 15:42:02] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= +[23-09-2024 15:42:02] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 15:42:03] INFO Found login prompt...sending callsign +[23-09-2024 15:42:05] INFO Skimmer is on as defined in the config file +[23-09-2024 15:42:05] INFO FT8 is off as defined in the config file +[23-09-2024 15:42:06] INFO DX: DK8IT - Spotter: YO4RDW - Freq: 14021.9 - Band: 20M - Mode: CW - Comment: 12 dB 28 WPM CQ - Time: 0842Z - DXCC: 230 +[23-09-2024 15:42:06] INFO DX: DK8IT - Spotter: YO4RDW - Freq: 14.021900 - Band: 20M - Mode: CW - CommandNumber: 1 - FlexSpotNumber: 0 +[23-09-2024 15:42:06] INFO R1|0|213 +[23-09-2024 15:43:45] INFO R command: 1 - FlexSpotNumber: 213 +[23-09-2024 15:44:09] INFO DX: HB9DNP - Spotter: R9IR - Freq: 14017.2 - Band: 20M - Mode: CW - Comment: 8 dB 26 WPM CQ - Time: 0842Z - DXCC: 287 +[23-09-2024 15:44:09] INFO DX: HB9DNP - Spotter: R9IR - Freq: 14.017200 - Band: 20M - Mode: CW - CommandNumber: 2 - FlexSpotNumber: 0 +[23-09-2024 15:44:09] INFO DX: N1FG - Spotter: K7EK - Freq: 7053.0 - Band: 40M - Mode: CW - Comment: 22 dB 19 WPM CQ - Time: 0842Z - DXCC: 291 +[23-09-2024 15:44:09] INFO DX: N1FG - Spotter: K7EK - Freq: 7.053000 - Band: 40M - Mode: CW - CommandNumber: 3 - FlexSpotNumber: 0 +[23-09-2024 15:44:10] INFO DX: DT1IIT - Spotter: OK1HRA - Freq: 14021.9 - Band: 20M - Mode: CW - Comment: 21 dB 27 WPM CQ - Time: 0842Z - DXCC: 137 +[23-09-2024 15:44:10] INFO DX: DT1IIT - Spotter: OK1HRA - Freq: 14.021900 - Band: 20M - Mode: CW - CommandNumber: 4 - FlexSpotNumber: 0 +[23-09-2024 15:44:10] INFO DX: JE0KBP - Spotter: 7N4XCV - Freq: 10123.0 - Band: 30M - Mode: CW - Comment: 5 dB 27 WPM CQ - Time: 0842Z - DXCC: 339 +[23-09-2024 15:44:10] INFO DX: JE0KBP - Spotter: 7N4XCV - Freq: 10.123000 - Band: 30M - Mode: CW - CommandNumber: 5 - FlexSpotNumber: 0 +[23-09-2024 15:44:11] INFO DX: 2E0NJK - Spotter: DE1LON - Freq: 14034.0 - Band: 20M - Mode: CW - Comment: 14 dB 21 WPM CQ - Time: 0842Z - DXCC: 223 +[23-09-2024 15:44:11] INFO DX: 2E0NJK - Spotter: DE1LON - Freq: 14.034000 - Band: 20M - Mode: CW - CommandNumber: 6 - FlexSpotNumber: 0 +[23-09-2024 15:44:11] INFO DX: PA0LCE - Spotter: DL0LA - Freq: 7010.0 - Band: 40M - Mode: CW - Comment: 19 dB 19 WPM CQ - Time: 0842Z - DXCC: 263 +[23-09-2024 15:44:11] INFO DX: PA0LCE - Spotter: DL0LA - Freq: 7.010000 - Band: 40M - Mode: CW - CommandNumber: 7 - FlexSpotNumber: 0 +[23-09-2024 15:44:12] INFO (** New DXCC **) DX: 4U1UN - Spotter: DL8LAS - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 22 dB 20 WPM NCDXF BCN - Time: 0842Z - Command: 0, FlexSpot: 0 +[23-09-2024 15:44:12] INFO DX: 4U1UN - Spotter: DL8LAS - Freq: 14.100000 - Band: 20M - Mode: CW - CommandNumber: 8 - FlexSpotNumber: 0 +[23-09-2024 15:44:12] INFO DX: BD4QAJ - Spotter: R9IR - Freq: 21023.0 - Band: 15M - Mode: CW - Comment: 7 dB 18 WPM CQ - Time: 0842Z - DXCC: 318 +[23-09-2024 15:44:12] INFO DX: BD4QAJ - Spotter: R9IR - Freq: 21.023000 - Band: 15M - Mode: CW - CommandNumber: 9 - FlexSpotNumber: 0 +[23-09-2024 15:44:13] INFO DX: SM5COP - Spotter: ZL3X - Freq: 18077.5 - Band: 17M - Mode: CW - Comment: 10 dB 24 WPM CQ - Time: 0842Z - DXCC: 284 +[23-09-2024 15:44:13] INFO DX: SM5COP - Spotter: ZL3X - Freq: 18.077500 - Band: 17M - Mode: CW - CommandNumber: 10 - FlexSpotNumber: 0 +[23-09-2024 15:44:13] INFO DX: G3VMK - Spotter: S53WW - Freq: 14029.0 - Band: 20M - Mode: CW - Comment: 21 dB 24 WPM CQ - Time: 0842Z - DXCC: 223 +[23-09-2024 15:44:13] INFO DX: G3VMK - Spotter: S53WW - Freq: 14.029000 - Band: 20M - Mode: CW - CommandNumber: 11 - FlexSpotNumber: 0 +[23-09-2024 15:44:14] INFO DX: M7GGH - Spotter: SV1DPJ - Freq: 28027.5 - Band: 10M - Mode: CW - Comment: 4 dB 19 WPM CQ - Time: 0842Z - DXCC: 223 +[23-09-2024 15:44:14] INFO DX: M7GGH - Spotter: SV1DPJ - Freq: 28.027500 - Band: 10M - Mode: CW - CommandNumber: 12 - FlexSpotNumber: 0 +[23-09-2024 15:44:15] INFO (** Worked **) DX: OK2BEI - Spotter: SV1DPJ - Freq: 18070.5 - Band: 17M - Mode: CW - Comment: 2 dB 22 WPM CQ - Time: 0842Z - DXCC: 503 +[23-09-2024 15:44:15] INFO DX: OK2BEI - Spotter: SV1DPJ - Freq: 18070.5 - Band: 17M - Mode: CW - Comment: 2 dB 22 WPM CQ - Time: 0842Z - DXCC: 503 +[23-09-2024 15:44:15] INFO DX: OK2BEI - Spotter: SV1DPJ - Freq: 18.070500 - Band: 17M - Mode: CW - CommandNumber: 13 - FlexSpotNumber: 0 +[23-09-2024 15:44:15] INFO (** New Mode **) DX: 5H1WX - Spotter: OE6TZE - Freq: 24890.0 - Band: 12M - Mode: CW - Comment: 8 dB 31 WPM CQ - Time: 0842Z - DXCC: 470 +[23-09-2024 15:44:15] INFO DX: 5H1WX - Spotter: OE6TZE - Freq: 24.890000 - Band: 12M - Mode: CW - CommandNumber: 14 - FlexSpotNumber: 0 +[23-09-2024 15:44:16] INFO DX: JA4VNE - Spotter: KH6LC - Freq: 18081.5 - Band: 17M - Mode: CW - Comment: 17 dB 23 WPM CQ - Time: 0842Z - DXCC: 339 +[23-09-2024 15:44:16] INFO DX: JA4VNE - Spotter: KH6LC - Freq: 18.081500 - Band: 17M - Mode: CW - CommandNumber: 15 - FlexSpotNumber: 0 +[23-09-2024 15:44:16] INFO DX: W2PM - Spotter: ZL3X - Freq: 10105.5 - Band: 30M - Mode: CW - Comment: 12 dB 26 WPM CQ - Time: 0842Z - DXCC: 291 +[23-09-2024 15:44:16] INFO DX: W2PM - Spotter: ZL3X - Freq: 10.105500 - Band: 30M - Mode: CW - CommandNumber: 16 - FlexSpotNumber: 0 +[23-09-2024 15:44:17] INFO (** New Mode **) DX: TZ4AM - Spotter: DM3ZM - Freq: 28018.2 - Band: 10M - Mode: - Comment: ((cq)) vy loud 73! - Time: 0842Z - DXCC: 442 +[23-09-2024 15:44:17] INFO DX: TZ4AM - Spotter: DM3ZM - Freq: 28.018200 - Band: 10M - Mode: - CommandNumber: 17 - FlexSpotNumber: 0 +[23-09-2024 15:44:17] INFO DX: HB9DAX - Spotter: OH6BG - Freq: 14029.9 - Band: 20M - Mode: CW - Comment: 21 dB 22 WPM CQ - Time: 0842Z - DXCC: 287 +[23-09-2024 15:44:17] INFO DX: HB9DAX - Spotter: OH6BG - Freq: 14.029900 - Band: 20M - Mode: CW - CommandNumber: 18 - FlexSpotNumber: 0 +[23-09-2024 15:44:18] INFO DX: SM5EUU - Spotter: G4ZFE - Freq: 10118.1 - Band: 30M - Mode: CW - Comment: 10 dB 19 WPM CQ - Time: 0842Z - DXCC: 284 +[23-09-2024 15:44:18] INFO DX: SM5EUU - Spotter: G4ZFE - Freq: 10.118100 - Band: 30M - Mode: CW - CommandNumber: 19 - FlexSpotNumber: 0 +[23-09-2024 15:44:19] INFO DX: R100AR - Spotter: G0KTN - Freq: 28046.0 - Band: 10M - Mode: CW - Comment: 14 dB 28 WPM CQ - Time: 0842Z - DXCC: 54 +[23-09-2024 15:44:19] INFO DX: R100AR - Spotter: G0KTN - Freq: 28.046000 - Band: 10M - Mode: CW - CommandNumber: 20 - FlexSpotNumber: 0 +[23-09-2024 15:44:19] INFO DX: EA2PW - Spotter: SM7IUN - Freq: 18080.0 - Band: 17M - Mode: CW - Comment: 7 dB 20 WPM CQ - Time: 0842Z - DXCC: 281 +[23-09-2024 15:44:19] INFO DX: EA2PW - Spotter: SM7IUN - Freq: 18.080000 - Band: 17M - Mode: CW - CommandNumber: 21 - FlexSpotNumber: 0 +[23-09-2024 15:44:20] INFO (** New Mode **) DX: G3WZT - Spotter: JR7HAN - Freq: 28016.0 - Band: 10M - Mode: - Comment: CQ - Time: 0842Z - DXCC: 223 +[23-09-2024 15:44:20] INFO DX: G3WZT - Spotter: JR7HAN - Freq: 28.016000 - Band: 10M - Mode: - CommandNumber: 22 - FlexSpotNumber: 0 +[23-09-2024 15:44:20] INFO DX: EA2PW - Spotter: G4AON - Freq: 18080.0 - Band: 17M - Mode: CW - Comment: 11 dB 20 WPM CQ - Time: 0842Z - DXCC: 281 +[23-09-2024 15:44:20] INFO DX: EA2PW - Spotter: G4AON - Freq: 18.080000 - Band: 17M - Mode: CW - CommandNumber: 23 - FlexSpotNumber: 0 +[23-09-2024 15:50:47] INFO config loaded. +[23-09-2024 15:50:47] INFO Callsign: XV9Q + +[23-09-2024 15:50:47] INFO deleting existing database +[23-09-2024 15:50:47] INFO Opening SQLite database +[23-09-2024 15:50:47] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 15:50:47] INFO connected to 10.10.10.120:4992 +[23-09-2024 15:50:47] INFO V1.4.0.0 +[23-09-2024 15:50:47] INFO H67EF86EB +[23-09-2024 15:50:47] INFO M10000001|Client connected from IP 10.10.10.163 +[23-09-2024 15:50:47] INFO S67EF86EB|radio slices=3 panadapters=3 lineout_gain=33 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=16 alpha=0 low_latency_digital_modes=1 mf_enable=1 +[23-09-2024 15:50:47] INFO S67EF86EB|radio filter_sharpness VOICE level=2 auto_level=1 +[23-09-2024 15:50:47] INFO S67EF86EB|radio filter_sharpness CW level=2 auto_level=1 +[23-09-2024 15:50:47] INFO S67EF86EB|radio filter_sharpness DIGITAL level=0 auto_level=0 +[23-09-2024 15:50:47] INFO S67EF86EB|radio static_net_params ip= gateway= netmask= +[23-09-2024 15:50:47] INFO S67EF86EB|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 +[23-09-2024 15:50:47] INFO S67EF86EB|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=0 tx1_enabled=1 tx2_enabled=0 tx3_enabled=0 tx_delay=35 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 +[23-09-2024 15:50:47] INFO S67EF86EB|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 +[23-09-2024 15:50:47] INFO S67EF86EB|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 +[23-09-2024 15:50:47] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= +[23-09-2024 15:50:48] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 15:50:48] INFO Found login prompt...sending callsign +[23-09-2024 15:50:50] INFO Skimmer is on as defined in the config file +[23-09-2024 15:50:50] INFO FT8 is off as defined in the config file +[23-09-2024 15:50:52] INFO DX: PD0HRS - Spotter: OK4QRO - Freq: 14060.1 - Band: 20M - Mode: CW - Comment: 25 dB 13 WPM CQ - Time: 0850Z - DXCC: 263 +[23-09-2024 15:50:52] INFO R1|0|232 +[23-09-2024 15:50:52] INFO R command: 1 - FlexSpotNumber: 232 +[23-09-2024 15:50:52] INFO DX: UN6QUN - Spotter: DC8YZ - Freq: 21031.1 - Band: 15M - Mode: CW - Comment: 7 dB 20 WPM CQ - Time: 0850Z - DXCC: 130 +[23-09-2024 15:50:53] INFO DX: VK4FOMP - Spotter: JN1ILK - Freq: 21019.9 - Band: 15M - Mode: CW - Comment: 17 dB 21 WPM CQ - Time: 0850Z - DXCC: 150 +[23-09-2024 15:50:53] INFO DX: 4X6TU - Spotter: DF2CK - Freq: 28200.0 - Band: 10M - Mode: CW - Comment: 20 dB 23 WPM NCDXF BCN - Time: 0850Z - DXCC: 997 +[23-09-2024 15:50:54] INFO (** New Band **) DX: IT9ISA - Spotter: IT9IFV - Freq: 7068.0 - Band: 40M - Mode: CW - Comment: MEMORIAL IT9ARB - Time: 0850Z - DXCC: 248 +[23-09-2024 15:50:54] INFO DX: 8J1FC - Spotter: JK1QLQ - Freq: 7005.0 - Band: 40M - Mode: CW - Comment: 18 dB 21 WPM CQ - Time: 0850Z - DXCC: 339 +[23-09-2024 15:50:55] INFO DX: MS0NYM - Spotter: HA6PX - Freq: 14007.0 - Band: 20M - Mode: CW - Comment: 16 dB 18 WPM CQ - Time: 0850Z - DXCC: 279 +[23-09-2024 15:50:57] INFO DX: JS1DEH - Spotter: OH6BG - Freq: 18081.0 - Band: 17M - Mode: CW - Comment: 14 dB 18 WPM CQ - Time: 0850Z - DXCC: 339 +[23-09-2024 15:51:01] INFO DX: DM50LOW - Spotter: HA8TKS - Freq: 14059.0 - Band: 20M - Mode: CW - Comment: 10 dB 17 WPM CQ - Time: 0851Z - DXCC: 230 +[23-09-2024 15:51:04] INFO (** New Band **) DX: CS3B - Spotter: G4ZFE - Freq: 24930.0 - Band: 12M - Mode: CW - Comment: 18 dB 21 WPM NCDXF BCN - Time: 0851Z - DXCC: 256 +[23-09-2024 15:51:04] INFO DX: DJ6TK - Spotter: IK3STG - Freq: 14028.0 - Band: 20M - Mode: CW - Comment: 32 dB 29 WPM CQ - Time: 0851Z - DXCC: 230 +[23-09-2024 15:51:05] INFO DX: JI1KUL - Spotter: JK1QLQ - Freq: 7010.0 - Band: 40M - Mode: CW - Comment: 4 dB 17 WPM CQ - Time: 0851Z - DXCC: 339 +[23-09-2024 15:51:06] INFO DX: ON4AHQ - Spotter: G4IRN - Freq: 18079.0 - Band: 17M - Mode: CW - Comment: 16 dB 19 WPM CQ - Time: 0851Z - DXCC: 209 +[23-09-2024 15:51:07] INFO (** New DXCC **) DX: 4U1UN - Spotter: TF3Y - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 22 dB 20 WPM NCDXF BCN - Time: 0851Z - Command: 0, FlexSpot: 0 +[23-09-2024 15:51:07] INFO DX: HB9DNP - Spotter: SV1DPJ - Freq: 14017.2 - Band: 20M - Mode: CW - Comment: 17 dB 27 WPM CQ - Time: 0851Z - DXCC: 287 +[23-09-2024 15:51:08] INFO DX: R2BLL - Spotter: OH6BG - Freq: 14020.0 - Band: 20M - Mode: CW - Comment: 13 dB 20 WPM CQ - Time: 0851Z - DXCC: 54 +[23-09-2024 15:51:15] INFO DX: JS2OCY - Spotter: JH7CSU - Freq: 7009.0 - Band: 40M - Mode: CW - Comment: 32 dB 21 WPM CQ - Time: 0851Z - DXCC: 339 +[23-09-2024 15:51:22] INFO DX: JR1NHD - Spotter: HA8TKS - Freq: 24893.1 - Band: 12M - Mode: CW - Comment: 9 dB 28 WPM CQ - Time: 0851Z - DXCC: 339 +[23-09-2024 15:51:23] INFO (** New Band **) DX: G4FUO - Spotter: SE5E - Freq: 10149.8 - Band: 30M - Mode: CW - Comment: 28 dB 22 WPM CQ - Time: 0851Z - DXCC: 223 +[23-09-2024 15:51:24] INFO DX: RX0F - Spotter: DL0PF - Freq: 28047.0 - Band: 10M - Mode: CW - Comment: 9 dB 31 WPM CQ - Time: 0851Z - DXCC: 15 +[23-09-2024 15:51:25] INFO (** New Mode **) DX: EA4MN - Spotter: EA1CJW - Freq: 7147.0 - Band: 40M - Mode: - Comment: - Time: 0851Z - DXCC: 281 +[23-09-2024 15:51:27] INFO (** New Band **) DX: GI3TME - Spotter: RK3TD - Freq: 28014.0 - Band: 10M - Mode: CW - Comment: 25 dB 22 WPM CQ - Time: 0851Z - DXCC: 265 +[23-09-2024 15:51:28] INFO DX: R100AR - Spotter: ON6ZQ - Freq: 28046.0 - Band: 10M - Mode: CW - Comment: 17 dB 28 WPM CQ - Time: 0851Z - DXCC: 54 +[23-09-2024 15:51:29] INFO DX: JH1XUP - Spotter: JJ2VLY - Freq: 10128.0 - Band: 30M - Mode: CW - Comment: 21 dB 21 WPM CQ - Time: 0851Z - DXCC: 339 +[23-09-2024 15:51:30] INFO DX: DH9BAJ - Spotter: SQ5OUO - Freq: 14060.6 - Band: 20M - Mode: CW - Comment: 15 dB 21 WPM CQ - Time: 0851Z - DXCC: 230 +[23-09-2024 15:51:31] INFO DX: F6IFJ - Spotter: LZ4UX - Freq: 24892.5 - Band: 12M - Mode: CW - Comment: 38 dB 23 WPM CQ - Time: 0851Z - DXCC: 227 +[23-09-2024 15:51:31] INFO DX: DH9BAJ - Spotter: EA1URA - Freq: 14060.5 - Band: 20M - Mode: CW - Comment: 8 dB 20 WPM CQ - Time: 0851Z - DXCC: 230 +[23-09-2024 15:51:32] INFO DX: BI1AVH - Spotter: JN1ILK - Freq: 21055.0 - Band: 15M - Mode: CW - Comment: 12 dB 21 WPM CQ - Time: 0851Z - DXCC: 318 +[23-09-2024 15:51:33] INFO DX: HB9DAX - Spotter: DF2CK - Freq: 14030.0 - Band: 20M - Mode: CW - Comment: 3 dB 23 WPM CQ - Time: 0851Z - DXCC: 287 +[23-09-2024 15:51:34] INFO DX: WA8VTD - Spotter: KP3CW - Freq: 7004.2 - Band: 40M - Mode: CW - Comment: 18 dB 18 WPM CQ - Time: 0851Z - DXCC: 291 +[23-09-2024 15:51:38] INFO DX: PA3F - Spotter: ON6ZQ - Freq: 7033.0 - Band: 40M - Mode: CW - Comment: 17 dB 15 WPM CQ - Time: 0851Z - DXCC: 263 +[23-09-2024 15:51:40] INFO DX: IK4POF - Spotter: SQ5OUO - Freq: 14063.1 - Band: 20M - Mode: CW - Comment: 9 dB 19 WPM CQ - Time: 0851Z - DXCC: 248 +[23-09-2024 15:51:42] INFO DX: IK4POF - Spotter: MW0MUT - Freq: 14063.0 - Band: 20M - Mode: CW - Comment: 10 dB 18 WPM CQ - Time: 0851Z - DXCC: 248 +[23-09-2024 15:51:43] INFO (** Worked **) DX: F5IN - Spotter: BH4RRG - Freq: 21017.0 - Band: 15M - Mode: CW - Comment: 8 dB 19 WPM CQ - Time: 0851Z - DXCC: 227 +[23-09-2024 15:51:43] INFO DX: F5IN - Spotter: BH4RRG - Freq: 21017.0 - Band: 15M - Mode: CW - Comment: 8 dB 19 WPM CQ - Time: 0851Z - DXCC: 227 +[23-09-2024 15:51:44] INFO (** Worked **) DX: YB1JCD - Spotter: VK2GEL - Freq: 21035.0 - Band: 15M - Mode: CW - Comment: 18 dB 28 WPM CQ - Time: 0851Z - DXCC: 327 +[23-09-2024 15:51:44] INFO DX: YB1JCD - Spotter: VK2GEL - Freq: 21035.0 - Band: 15M - Mode: CW - Comment: 18 dB 28 WPM CQ - Time: 0851Z - DXCC: 327 +[23-09-2024 15:51:46] INFO DX: OK2NT - Spotter: ON7KEC - Freq: 14013.0 - Band: 20M - Mode: CW - Comment: 36 dB 23 WPM CQ - Time: 0851Z - DXCC: 503 +[23-09-2024 15:51:47] INFO DX: OK2NT - Spotter: RN4WA - Freq: 14013.0 - Band: 20M - Mode: CW - Comment: 19 dB 20 WPM CQ - Time: 0851Z - DXCC: 503 +[23-09-2024 15:51:49] INFO DX: ZL6B - Spotter: KM3T - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 12 dB 20 WPM NCDXF BCN - Time: 0851Z - DXCC: 170 +[23-09-2024 15:51:55] INFO DX: 4X6FB - Spotter: LZ4AE - Freq: 18075.0 - Band: 17M - Mode: CW - Comment: 5 dB 23 WPM CQ - Time: 0851Z - DXCC: 336 +[23-09-2024 15:51:56] INFO DX: 4X6FB - Spotter: SQ5J - Freq: 18075.1 - Band: 17M - Mode: CW - Comment: 12 dB 23 WPM CQ - Time: 0851Z - DXCC: 336 +[23-09-2024 15:52:06] INFO DX: SM5COP - Spotter: SQ5J - Freq: 14031.4 - Band: 20M - Mode: CW - Comment: 39 dB 23 WPM CQ - Time: 0852Z - DXCC: 284 +[23-09-2024 15:52:07] INFO DX: PA1TGI - Spotter: DM5GG - Freq: 7033.0 - Band: 40M - Mode: CW - Comment: 24 dB 12 WPM CQ - Time: 0852Z - DXCC: 263 +[23-09-2024 15:52:13] INFO (** New Band **) DX: OK0EU - Spotter: DF2CK - Freq: 7038.5 - Band: 40M - Mode: CW - Comment: 10 dB 20 WPM BEACON - Time: 0852Z - DXCC: 503 +[23-09-2024 15:52:17] INFO DX: VK6RBP - Spotter: VK2RH - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 7 dB 20 WPM NCDXF BCN - Time: 0852Z - DXCC: 150 +[23-09-2024 15:52:23] INFO DX: RR9O - Spotter: DF2CK - Freq: 14100.1 - Band: 20M - Mode: CW - Comment: 36 dB 22 WPM NCDXF BCN - Time: 0852Z - DXCC: 997 +[23-09-2024 15:52:26] INFO (** New Band **) DX: G3UDS - Spotter: HA6PX - Freq: 7030.0 - Band: 40M - Mode: CW - Comment: 9 dB 21 WPM CQ - Time: 0852Z - DXCC: 223 +[23-09-2024 15:52:27] INFO (** New Band **) DX: TZ4AM - Spotter: OK1HRA - Freq: 28018.1 - Band: 10M - Mode: CW - Comment: 29 dB 22 WPM CQ - Time: 0852Z - DXCC: 442 +[23-09-2024 15:52:31] INFO DX: VR2B - Spotter: 9M2CNC - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 22 dB 21 WPM NCDXF BCN - Time: 0852Z - DXCC: 321 +[23-09-2024 15:52:33] INFO DX: G4NCU - Spotter: DF2CK - Freq: 14060.0 - Band: 20M - Mode: CW - Comment: 27 dB 18 WPM CQ - Time: 0852Z - DXCC: 223 +[23-09-2024 15:52:34] INFO DX: RR9O - Spotter: DL8LAS - Freq: 18110.1 - Band: 17M - Mode: CW - Comment: 18 dB 21 WPM NCDXF BCN - Time: 0852Z - DXCC: 997 +[23-09-2024 15:52:38] INFO DX: RA6UD - Spotter: DM5GG - Freq: 28015.9 - Band: 10M - Mode: CW - Comment: 39 dB 27 WPM CQ - Time: 0852Z - DXCC: 54 +[23-09-2024 15:52:38] INFO DX: SP8GSC - Spotter: TF3Y - Freq: 28012.1 - Band: 10M - Mode: CW - Comment: 24 dB 20 WPM CQ - Time: 0852Z - DXCC: 269 +[23-09-2024 15:52:39] INFO DX: EA2PW - Spotter: YO2MAX - Freq: 24897.0 - Band: 12M - Mode: CW - Comment: 22 dB 18 WPM CQ - Time: 0852Z - DXCC: 281 +[23-09-2024 15:52:40] INFO DX: G4NCU - Spotter: DD5XX - Freq: 14060.0 - Band: 20M - Mode: CW - Comment: 29 dB 18 WPM CQ - Time: 0852Z - DXCC: 223 +[23-09-2024 15:52:46] INFO DX: RA6UD - Spotter: LA7GIA - Freq: 28015.9 - Band: 10M - Mode: CW - Comment: 43 dB 27 WPM CQ - Time: 0852Z - DXCC: 54 +[23-09-2024 15:52:48] INFO (** New Band **) DX: DL7GAO - Spotter: DM5GG - Freq: 7027.0 - Band: 40M - Mode: CW - Comment: 33 dB 22 WPM CQ - Time: 0852Z - DXCC: 230 +[23-09-2024 15:52:49] INFO DX: VR2B - Spotter: TF3Y - Freq: 21150.1 - Band: 15M - Mode: CW - Comment: 22 dB 19 WPM NCDXF BCN - Time: 0852Z - DXCC: 321 +[23-09-2024 15:52:52] INFO DX: HA8AU - Spotter: EA1URA - Freq: 14019.6 - Band: 20M - Mode: CW - Comment: 10 dB 21 WPM CQ - Time: 0852Z - DXCC: 239 +[23-09-2024 15:52:53] INFO (** Worked **) DX: OK2BEI - Spotter: MW0MUT - Freq: 18072.2 - Band: 17M - Mode: CW - Comment: 19 dB 19 WPM CQ - Time: 0852Z - DXCC: 503 +[23-09-2024 15:52:53] INFO DX: OK2BEI - Spotter: MW0MUT - Freq: 18072.2 - Band: 17M - Mode: CW - Comment: 19 dB 19 WPM CQ - Time: 0852Z - DXCC: 503 +[23-09-2024 15:52:55] INFO DX: PA0SIM - Spotter: DL8LAS - Freq: 7030.0 - Band: 40M - Mode: CW - Comment: 20 dB 21 WPM CQ - Time: 0852Z - DXCC: 263 +[23-09-2024 15:52:55] INFO (** New Band **) DX: G4FUO - Spotter: DK9IP - Freq: 10101.9 - Band: 30M - Mode: CW - Comment: 20 dB 21 WPM CQ - Time: 0852Z - DXCC: 223 +[23-09-2024 15:52:57] INFO DX: DH9BAJ - Spotter: S53WW - Freq: 14051.0 - Band: 20M - Mode: CW - Comment: 20 dB 20 WPM CQ - Time: 0852Z - DXCC: 230 +[23-09-2024 15:53:04] INFO DX: UT2QL - Spotter: F4GOU - Freq: 28038.1 - Band: 10M - Mode: CW - Comment: 8 dB 14 WPM CQ - Time: 0853Z - DXCC: 288 +[23-09-2024 16:04:01] INFO config loaded. +[23-09-2024 16:04:01] INFO Callsign: XV9Q + +[23-09-2024 16:04:01] INFO deleting existing database +[23-09-2024 16:04:01] INFO Opening SQLite database +[23-09-2024 16:04:01] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 16:04:01] INFO connected to 10.10.10.120:4992 +[23-09-2024 16:04:01] INFO V1.4.0.0 +[23-09-2024 16:04:01] INFO H77523EB5 +[23-09-2024 16:04:01] INFO M10000001|Client connected from IP 10.10.10.163 +[23-09-2024 16:04:01] INFO S77523EB5|radio slices=3 panadapters=3 lineout_gain=33 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 +[23-09-2024 16:04:01] INFO S77523EB5|radio filter_sharpness VOICE level=2 auto_level=1 +[23-09-2024 16:04:01] INFO S77523EB5|radio filter_sharpness CW level=2 auto_level=1 +[23-09-2024 16:04:01] INFO S77523EB5|radio filter_sharpness DIGITAL level=0 auto_level=0 +[23-09-2024 16:04:01] INFO S77523EB5|radio static_net_params ip= gateway= netmask= +[23-09-2024 16:04:01] INFO S77523EB5|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 +[23-09-2024 16:04:01] INFO S77523EB5|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=0 tx1_enabled=1 tx2_enabled=0 tx3_enabled=0 tx_delay=35 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 +[23-09-2024 16:04:01] INFO S77523EB5|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 +[23-09-2024 16:04:01] INFO S77523EB5|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 +[23-09-2024 16:04:01] INFO S0|interlock tx_client_handle=0x00000000 state=READY reason=AMP:TG source= tx_allowed=1 amplifier= +[23-09-2024 16:04:02] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:02] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:03] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:04] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:05] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:06] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:07] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:08] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:09] ERROR Error reading message: %sread tcp 10.10.10.163:61533->69.243.242.58:7300: wsarecv: An existing connection was forcibly closed by the remote host. +[23-09-2024 16:04:50] INFO config loaded. +[23-09-2024 16:04:50] INFO Callsign: XV9Q + +[23-09-2024 16:04:50] INFO deleting existing database +[23-09-2024 16:04:50] INFO Opening SQLite database +[23-09-2024 16:04:50] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 16:04:50] INFO connected to 10.10.10.120:4992 +[23-09-2024 16:04:50] INFO V1.4.0.0 +[23-09-2024 16:04:50] INFO H446084A9 +[23-09-2024 16:04:50] INFO M10000001|Client connected from IP 10.10.10.163 +[23-09-2024 16:04:50] INFO S446084A9|radio slices=3 panadapters=3 lineout_gain=33 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 +[23-09-2024 16:04:50] INFO S446084A9|radio filter_sharpness VOICE level=2 auto_level=1 +[23-09-2024 16:04:50] INFO S446084A9|radio filter_sharpness CW level=2 auto_level=1 +[23-09-2024 16:04:50] INFO S446084A9|radio filter_sharpness DIGITAL level=0 auto_level=0 +[23-09-2024 16:04:50] INFO S446084A9|radio static_net_params ip= gateway= netmask= +[23-09-2024 16:04:50] INFO S446084A9|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 +[23-09-2024 16:04:50] INFO S446084A9|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=0 tx1_enabled=1 tx2_enabled=0 tx3_enabled=0 tx_delay=35 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 +[23-09-2024 16:04:50] INFO S446084A9|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 +[23-09-2024 16:04:50] INFO S446084A9|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 +[23-09-2024 16:04:50] INFO S0|interlock tx_client_handle=0x00000000 state=RECEIVE reason= source= tx_allowed=0 amplifier= +[23-09-2024 16:04:50] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 16:04:51] INFO Found login prompt...sending callsign +[23-09-2024 16:04:53] INFO Skimmer is on as defined in the config file +[23-09-2024 16:04:53] INFO FT8 is off as defined in the config file +[23-09-2024 16:04:54] INFO DX: RA6UD - Spotter: 2E0INH - Freq: 28015.9 - Band: 10M - Mode: CW - Comment: 1 dB 21 WPM CQ - Time: 0904Z - DXCC: 54 +[23-09-2024 16:04:54] INFO R1|0|312 +[23-09-2024 16:04:54] INFO DX: JF6CYD - Spotter: JI1HFJ - Freq: 14027.0 - Band: 20M - Mode: CW - Comment: 12 dB 20 WPM CQ - Time: 0904Z - DXCC: 339 +[23-09-2024 16:04:55] INFO DX: DK0WCY - Spotter: DF2CK - Freq: 10144.0 - Band: 30M - Mode: CW - Comment: 24 dB 16 WPM BEACON - Time: 0904Z - DXCC: 230 +[23-09-2024 16:04:55] INFO DX: VE7SVE - Spotter: DF2CK - Freq: 7046.3 - Band: 40M - Mode: CW - Comment: 26 dB 25 WPM CQ - Time: 0904Z - DXCC: 1 +[23-09-2024 16:04:56] INFO DX: VR2B - Spotter: 5W1SA - Freq: 21150.0 - Band: 15M - Mode: CW - Comment: 13 dB 22 WPM NCDXF BCN - Time: 0904Z - DXCC: 321 +[23-09-2024 16:04:56] INFO DX: JS1DEH - Spotter: JN1ILK - Freq: 18081.0 - Band: 17M - Mode: CW - Comment: 15 dB 18 WPM CQ - Time: 0904Z - DXCC: 339 +[23-09-2024 16:04:57] INFO DX: HA8AU - Spotter: LA7GIA - Freq: 14019.5 - Band: 20M - Mode: CW - Comment: 11 dB 13 WPM CQ - Time: 0904Z - DXCC: 239 +[23-09-2024 16:04:58] INFO DX: WA8VTD - Spotter: AC0C - Freq: 7003.5 - Band: 40M - Mode: CW - Comment: 35 dB 23 WPM CQ - Time: 0904Z - DXCC: 291 +[23-09-2024 16:04:58] INFO DX: WA8VTD - Spotter: KM3T - Freq: 7003.5 - Band: 40M - Mode: CW - Comment: 27 dB 24 WPM CQ - Time: 0904Z - DXCC: 291 +[23-09-2024 16:05:00] INFO DX: JL3JRY - Spotter: KA7OEI - Freq: 10123.0 - Band: 30M - Mode: CW - Comment: 11 dB 26 WPM CQ - Time: 0905Z - DXCC: 339 +[23-09-2024 16:05:02] INFO DX: N1IYH - Spotter: W4KAZ - Freq: 7029.1 - Band: 40M - Mode: CW - Comment: 19 dB 19 WPM CQ - Time: 0905Z - DXCC: 291 +[23-09-2024 16:05:06] INFO DX: R4FBJ - Spotter: G0KTN - Freq: 21034.0 - Band: 15M - Mode: CW - Comment: 8 dB 22 WPM CQ - Time: 0905Z - DXCC: 54 +[23-09-2024 16:05:07] INFO client connected[::1]:61667 +[23-09-2024 16:05:07] INFO DX: R4WAN - Spotter: OK1FCJ - Freq: 28042.0 - Band: 10M - Mode: CW - Comment: 30 dB 22 WPM CQ - Time: 0905Z - DXCC: 54 +[23-09-2024 16:05:13] INFO Message reçu du client: %s +XV9Q +[23-09-2024 16:05:13] INFO Message reçu du client: %s +XV9Q +[23-09-2024 16:05:13] INFO Message reçu du client: %s +SH/DX 30 +[23-09-2024 16:05:16] INFO DX: G4GOU - Spotter: F4GOU - Freq: 24912.5 - Band: 12M - Mode: CW - Comment: 27 dB 15 WPM CQ - Time: 0905Z - DXCC: 223 +[23-09-2024 16:05:17] INFO DX: OZ2A - Spotter: DD5XX - Freq: 14022.8 - Band: 20M - Mode: CW - Comment: 32 dB 29 WPM CQ - Time: 0905Z - DXCC: 221 +[23-09-2024 16:05:17] INFO DX: OZ2A - Spotter: DL8LAS - Freq: 14022.8 - Band: 20M - Mode: CW - Comment: 9 dB 29 WPM CQ - Time: 0905Z - DXCC: 221 +[23-09-2024 16:05:19] INFO DX: OH2B - Spotter: LZ5DI - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 10 dB 22 WPM NCDXF BCN - Time: 0905Z - DXCC: 997 +[23-09-2024 16:05:22] INFO (** New Band **) DX: CT1ZQ - Spotter: EA2CW - Freq: 7009.9 - Band: 40M - Mode: CW - Comment: 17 dB 15 WPM CQ - Time: 0905Z - DXCC: 272 +[23-09-2024 16:05:24] INFO (** New Band **) DX: M5TXJ - Spotter: MW0MUT - Freq: 7027.4 - Band: 40M - Mode: CW - Comment: 5 dB 15 WPM CQ - Time: 0905Z - DXCC: 223 +[23-09-2024 16:05:24] INFO (** New Band **) DX: CT1ZQ - Spotter: EA1URA - Freq: 7009.9 - Band: 40M - Mode: CW - Comment: 23 dB 15 WPM CQ - Time: 0905Z - DXCC: 272 +[23-09-2024 16:05:26] INFO DX: JJ0TJS - Spotter: JN1ILK - Freq: 7012.8 - Band: 40M - Mode: CW - Comment: 23 dB 16 WPM CQ - Time: 0905Z - DXCC: 339 +[23-09-2024 16:05:27] INFO DX: OH2B - Spotter: LZ4AE - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 15 dB 21 WPM NCDXF BCN - Time: 0905Z - DXCC: 997 +[23-09-2024 16:05:27] INFO DX: JR6QXD - Spotter: R9IR - Freq: 18084.0 - Band: 17M - Mode: CW - Comment: 10 dB 17 WPM CQ - Time: 0905Z - DXCC: 339 +[23-09-2024 16:05:29] INFO DX: CS3B - Spotter: G4IRN - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 39 dB 19 WPM NCDXF BCN - Time: 0905Z - DXCC: 256 +[23-09-2024 16:05:30] INFO (** New Band **) DX: NC3S - Spotter: NG7M - Freq: 3505.9 - Band: 80M - Mode: CW - Comment: 13 dB 19 WPM CQ - Time: 0905Z - DXCC: 291 +[23-09-2024 16:05:35] INFO DX: 4X6TU - Spotter: G4ZFE - Freq: 24930.0 - Band: 12M - Mode: CW - Comment: 12 dB 23 WPM NCDXF BCN - Time: 0905Z - DXCC: 997 +[23-09-2024 16:05:37] INFO DX: OH2B - Spotter: G0KTN - Freq: 21150.0 - Band: 15M - Mode: CW - Comment: 14 dB 18 WPM NCDXF BCN - Time: 0905Z - DXCC: 997 +[23-09-2024 16:05:42] INFO DX: EC3STU - Spotter: DC8YZ - Freq: 14058.0 - Band: 20M - Mode: CW - Comment: 10 dB 14 WPM CQ - Time: 0905Z - DXCC: 281 +[23-09-2024 16:05:44] INFO DX: EC3STU - Spotter: DF2CK - Freq: 14058.0 - Band: 20M - Mode: CW - Comment: 14 dB 14 WPM CQ - Time: 0905Z - DXCC: 281 +[23-09-2024 16:05:47] INFO DX: R1OA - Spotter: RU9CZD - Freq: 14059.9 - Band: 20M - Mode: CW - Comment: 29 dB 15 WPM CQ - Time: 0905Z - DXCC: 54 +[23-09-2024 16:05:49] INFO DX: OE1VZ - Spotter: RN4WA - Freq: 28057.3 - Band: 10M - Mode: CW - Comment: 19 dB 20 WPM CQ - Time: 0905Z - DXCC: 206 +[23-09-2024 16:05:50] INFO DX: CS3B - Spotter: G4IRN - Freq: 21150.0 - Band: 15M - Mode: CW - Comment: 30 dB 21 WPM NCDXF BCN - Time: 0905Z - DXCC: 256 +[23-09-2024 16:05:51] INFO DX: F4GOU - Spotter: SV1DPJ - Freq: 24911.0 - Band: 12M - Mode: CW - Comment: 6 dB 17 WPM CQ - Time: 0905Z - DXCC: 227 +[23-09-2024 16:05:53] INFO DX: PD0HRS - Spotter: 2E0INH - Freq: 14019.6 - Band: 20M - Mode: CW - Comment: 12 dB 21 WPM CQ - Time: 0905Z - DXCC: 263 +[23-09-2024 16:05:56] INFO DX: PD0HRS - Spotter: SM7IUN - Freq: 14019.6 - Band: 20M - Mode: CW - Comment: 23 dB 21 WPM CQ - Time: 0905Z - DXCC: 263 +[23-09-2024 16:05:57] INFO DX: RX0F - Spotter: HA6PX - Freq: 28047.0 - Band: 10M - Mode: CW - Comment: 7 dB 31 WPM CQ - Time: 0905Z - DXCC: 15 +[23-09-2024 16:05:58] INFO DX: SP7IWA - Spotter: SQ5J - Freq: 24892.2 - Band: 12M - Mode: CW - Comment: 29 dB 27 WPM CQ - Time: 0905Z - DXCC: 269 +[23-09-2024 16:05:59] INFO DX: MS0NYM - Spotter: TF3Y - Freq: 14007.0 - Band: 20M - Mode: CW - Comment: 47 dB 25 WPM CQ - Time: 0905Z - DXCC: 279 +[23-09-2024 16:06:11] INFO config loaded. +[23-09-2024 16:06:11] INFO Callsign: XV9Q + +[23-09-2024 16:06:11] INFO deleting existing database +[23-09-2024 16:06:11] INFO Opening SQLite database +[23-09-2024 16:06:11] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 16:06:11] INFO connected to 10.10.10.120:4992 +[23-09-2024 16:06:16] INFO V1.4.0.0 +[23-09-2024 16:06:17] INFO H1A0E6443 +[23-09-2024 16:06:18] INFO M10000001|Client connected from IP 10.10.10.163 +[23-09-2024 16:06:18] INFO S1A0E6443|radio slices=3 panadapters=3 lineout_gain=33 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 +[23-09-2024 16:06:18] INFO S1A0E6443|radio filter_sharpness VOICE level=2 auto_level=1 +[23-09-2024 16:06:19] INFO S1A0E6443|radio filter_sharpness CW level=2 auto_level=1 +[23-09-2024 16:06:19] INFO S1A0E6443|radio filter_sharpness DIGITAL level=0 auto_level=0 +[23-09-2024 16:06:20] INFO S1A0E6443|radio static_net_params ip= gateway= netmask= +[23-09-2024 16:06:20] INFO S1A0E6443|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 +[23-09-2024 16:06:21] INFO S1A0E6443|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=0 tx1_enabled=1 tx2_enabled=0 tx3_enabled=0 tx_delay=35 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 +[23-09-2024 16:06:21] INFO S0|interlock tx_client_handle=0x00000000 state=RECEIVE reason= source= tx_allowed=0 amplifier= +[23-09-2024 16:06:22] INFO S1A0E6443|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 +[23-09-2024 16:06:22] INFO S1A0E6443|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 +[23-09-2024 16:06:22] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 16:06:25] INFO Found login prompt...sending callsign +[23-09-2024 16:06:27] INFO Skimmer is on as defined in the config file +[23-09-2024 16:06:27] INFO FT8 is off as defined in the config file +[23-09-2024 16:06:28] INFO DX: JR6QXD - Spotter: BD4QJP - Freq: 18084.0 - Band: 17M - Mode: CW - Comment: 23 dB 17 WPM CQ - Time: 0906Z - DXCC: 339 +[23-09-2024 16:06:32] INFO R1|0|331 +[23-09-2024 16:06:32] INFO (** New Band **) DX: WA8VTD - Spotter: KM3T - Freq: 3504.8 - Band: 80M - Mode: CW - Comment: 23 dB 23 WPM CQ - Time: 0906Z - DXCC: 291 +[23-09-2024 16:06:33] INFO DX: F6FQX - Spotter: G0KTN - Freq: 10129.0 - Band: 30M - Mode: CW - Comment: 18 dB 21 WPM CQ - Time: 0906Z - DXCC: 227 +[23-09-2024 16:06:33] INFO DX: RX0F - Spotter: R9IR - Freq: 28047.0 - Band: 10M - Mode: CW - Comment: 15 dB 31 WPM CQ - Time: 0906Z - DXCC: 15 +[23-09-2024 16:06:34] INFO (** Worked **) DX: R3PJN - Spotter: TF3Y - Freq: 28010.0 - Band: 10M - Mode: CW - Comment: 9 dB 21 WPM CQ - Time: 0906Z - DXCC: 54 +[23-09-2024 16:06:34] INFO DX: R3PJN - Spotter: TF3Y - Freq: 28010.0 - Band: 10M - Mode: CW - Comment: 9 dB 21 WPM CQ - Time: 0906Z - DXCC: 54 +[23-09-2024 16:06:34] INFO (** New Mode **) DX: IZ5MMP - Spotter: IU8MIC - Freq: 7160.0 - Band: 40M - Mode: - Comment: sig 59 LSB 40 m - Time: 0906Z - DXCC: 248 +[23-09-2024 16:06:35] INFO DX: IK4WKU - Spotter: W1NT - Freq: 14038.5 - Band: 20M - Mode: CW - Comment: 14 dB 26 WPM CQ - Time: 0906Z - DXCC: 248 +[23-09-2024 16:06:35] INFO DX: R100AR - Spotter: 2E0INH - Freq: 18070.0 - Band: 17M - Mode: CW - Comment: 12 dB 29 WPM CQ - Time: 0906Z - DXCC: 54 +[23-09-2024 16:06:37] INFO DX: DL8NBM - Spotter: YO2MAX - Freq: 14060.3 - Band: 20M - Mode: CW - Comment: 3 dB 20 WPM CQ - Time: 0906Z - DXCC: 230 +[23-09-2024 16:06:40] INFO DX: HA8AU - Spotter: KP3CW - Freq: 14019.6 - Band: 20M - Mode: CW - Comment: 6 dB 21 WPM CQ - Time: 0906Z - DXCC: 239 +[23-09-2024 16:06:40] INFO DX: TA2ES - Spotter: RN4WA - Freq: 28025.0 - Band: 10M - Mode: CW - Comment: 21 dB 22 WPM CQ - Time: 0906Z - DXCC: 390 +[23-09-2024 16:06:42] INFO DX: R4FBJ - Spotter: SQ5OUO - Freq: 21034.1 - Band: 15M - Mode: CW - Comment: 14 dB 22 WPM CQ - Time: 0906Z - DXCC: 54 +[23-09-2024 16:06:48] INFO (** Worked **) DX: F5IN - Spotter: DE1LON - Freq: 21017.0 - Band: 15M - Mode: CW - Comment: 16 dB 20 WPM CQ - Time: 0906Z - DXCC: 227 +[23-09-2024 16:06:48] INFO DX: F5IN - Spotter: DE1LON - Freq: 21017.0 - Band: 15M - Mode: CW - Comment: 16 dB 20 WPM CQ - Time: 0906Z - DXCC: 227 +[23-09-2024 16:06:49] INFO DX: VK4XF - Spotter: EA2GR - Freq: 14256.0 - Band: 20M - Mode: USB - Comment: - Time: 0906Z - DXCC: 150 +[23-09-2024 16:06:51] INFO DX: PA3BUL - Spotter: DM5GG - Freq: 7038.7 - Band: 40M - Mode: CW - Comment: 5 dB 15 WPM CQ - Time: 0906Z - DXCC: 263 +[23-09-2024 16:06:53] INFO DX: PA3BUL - Spotter: DC8YZ - Freq: 7038.7 - Band: 40M - Mode: CW - Comment: 16 dB 15 WPM CQ - Time: 0906Z - DXCC: 263 +[23-09-2024 16:06:54] INFO DX: OK1JX - Spotter: F6KGL - Freq: 14047.2 - Band: 20M - Mode: CW - Comment: 11 dB 23 WPM CQ - Time: 0906Z - DXCC: 503 +[23-09-2024 16:06:54] INFO (** New Band **) DX: OA1E - Spotter: W4KAZ - Freq: 3568.9 - Band: 80M - Mode: CW - Comment: 33 dB 19 WPM CQ - Time: 0906Z - DXCC: 136 +[23-09-2024 16:06:55] INFO DX: R4WAN - Spotter: DK1MAX - Freq: 28042.0 - Band: 10M - Mode: CW - Comment: 19 dB 22 WPM CQ - Time: 0906Z - DXCC: 54 +[23-09-2024 16:06:56] INFO DX: SV6DBG - Spotter: G4ZFE - Freq: 28268.9 - Band: 10M - Mode: CW - Comment: 9 dB 12 WPM BEACON - Time: 0906Z - DXCC: 236 +[23-09-2024 16:06:58] INFO DX: TA0F - Spotter: G0KTN - Freq: 28047.0 - Band: 10M - Mode: CW - Comment: 16 dB 31 WPM CQ - Time: 0906Z - DXCC: 390 +[23-09-2024 16:06:59] INFO DX: UR3QX - Spotter: MM3NDH - Freq: 28031.1 - Band: 10M - Mode: CW - Comment: 2 dB 19 WPM CQ - Time: 0906Z - DXCC: 288 +[23-09-2024 16:07:20] INFO config loaded. +[23-09-2024 16:07:20] INFO Callsign: XV9Q + +[23-09-2024 16:07:20] INFO deleting existing database +[23-09-2024 16:07:20] INFO Opening SQLite database +[23-09-2024 16:07:20] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 16:07:20] INFO connected to 10.10.10.120:4992 +[23-09-2024 16:07:20] INFO V1.4.0.0 +[23-09-2024 16:07:20] INFO H0BBEB40A +[23-09-2024 16:07:20] INFO M10000001|Client connected from IP 10.10.10.163 +[23-09-2024 16:07:20] INFO SBBEB40A|radio slices=3 panadapters=3 lineout_gain=33 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 +[23-09-2024 16:07:20] INFO SBBEB40A|radio filter_sharpness VOICE level=2 auto_level=1 +[23-09-2024 16:07:20] INFO SBBEB40A|radio filter_sharpness CW level=2 auto_level=1 +[23-09-2024 16:07:20] INFO SBBEB40A|radio filter_sharpness DIGITAL level=0 auto_level=0 +[23-09-2024 16:07:20] INFO SBBEB40A|radio static_net_params ip= gateway= netmask= +[23-09-2024 16:07:20] INFO SBBEB40A|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 +[23-09-2024 16:07:20] INFO SBBEB40A|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=0 tx1_enabled=1 tx2_enabled=0 tx3_enabled=0 tx_delay=35 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 +[23-09-2024 16:07:20] INFO SBBEB40A|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 +[23-09-2024 16:07:20] INFO SBBEB40A|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 +[23-09-2024 16:07:20] INFO S0|interlock tx_client_handle=0x00000000 state=RECEIVE reason= source= tx_allowed=0 amplifier= +[23-09-2024 16:07:20] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 16:07:21] INFO Found login prompt...sending callsign +[23-09-2024 16:07:23] INFO Skimmer is on as defined in the config file +[23-09-2024 16:07:23] INFO FT8 is off as defined in the config file +[23-09-2024 16:07:24] INFO DX: R100AR - Spotter: ET3AA - Freq: 18069.8 - Band: 17M - Mode: CW - Comment: 5 dB 26 WPM CQ - Time: 0907Z - DXCC: 54 +[23-09-2024 16:07:24] INFO R1|0|363 +[23-09-2024 16:07:24] INFO (** Worked **) DX: F5IN - Spotter: SV1DPJ - Freq: 21017.0 - Band: 15M - Mode: CW - Comment: 19 dB 20 WPM CQ - Time: 0907Z - DXCC: 227 +[23-09-2024 16:07:24] INFO DX: F5IN - Spotter: SV1DPJ - Freq: 21017.0 - Band: 15M - Mode: CW - Comment: 19 dB 20 WPM CQ - Time: 0907Z - DXCC: 227 +[23-09-2024 16:07:25] INFO (** New Band **) DX: TZ4AM - Spotter: DF2CK - Freq: 28018.4 - Band: 10M - Mode: CW - Comment: 20 dB 23 WPM CQ - Time: 0907Z - DXCC: 442 +[23-09-2024 16:07:25] INFO DX: G3PJT - Spotter: BA6KC - Freq: 28023.2 - Band: 10M - Mode: CW - Comment: 21 dB 24 WPM CQ - Time: 0907Z - DXCC: 223 +[23-09-2024 16:07:26] INFO DX: OK1JX - Spotter: ON7KEC - Freq: 14047.2 - Band: 20M - Mode: CW - Comment: 5 dB 23 WPM CQ - Time: 0907Z - DXCC: 503 +[23-09-2024 16:07:26] INFO DX: G4LFU - Spotter: OH4KA - Freq: 21020.0 - Band: 15M - Mode: CW - Comment: 28 dB 25 WPM CQ - Time: 0907Z - DXCC: 223 +[23-09-2024 16:07:27] INFO DX: DK1VD - Spotter: SE5E - Freq: 14046.1 - Band: 20M - Mode: CW - Comment: 25 dB 32 WPM CQ - Time: 0907Z - DXCC: 230 +[23-09-2024 16:07:28] INFO (** New Band **) DX: CT1ZQ - Spotter: MM0ZBH - Freq: 7009.9 - Band: 40M - Mode: CW - Comment: 4 dB 15 WPM CQ - Time: 0907Z - DXCC: 272 +[23-09-2024 16:07:29] INFO DX: JR3OYH - Spotter: JN1ILK - Freq: 10129.5 - Band: 30M - Mode: CW - Comment: 11 dB 25 WPM CQ - Time: 0907Z - DXCC: 339 +[23-09-2024 16:07:29] INFO (** Worked **) DX: R3PJN - Spotter: MM3NDH - Freq: 28010.0 - Band: 10M - Mode: CW - Comment: 7 dB 22 WPM CQ - Time: 0907Z - DXCC: 54 +[23-09-2024 16:07:29] INFO DX: R3PJN - Spotter: MM3NDH - Freq: 28010.0 - Band: 10M - Mode: CW - Comment: 7 dB 22 WPM CQ - Time: 0907Z - DXCC: 54 +[23-09-2024 16:07:31] INFO DX: OH4HK - Spotter: RN4WA - Freq: 14089.0 - Band: 20M - Mode: RTTY - Comment: +26 dB CQ - Time: 0907Z - DXCC: 224 +[23-09-2024 16:07:32] INFO DX: RR9O - Spotter: G4IRN - Freq: 18110.1 - Band: 17M - Mode: CW - Comment: 23 dB 21 WPM NCDXF BCN - Time: 0907Z - DXCC: 997 +[23-09-2024 16:07:33] INFO (** New Mode **) DX: TZ4AM - Spotter: TA6B - Freq: 28018.2 - Band: 10M - Mode: - Comment: Tnx Jeff 73! - Time: 0907Z - DXCC: 442 +[23-09-2024 16:07:35] INFO DX: TA2ES - Spotter: EA5WU - Freq: 28025.0 - Band: 10M - Mode: CW - Comment: 12 dB 21 WPM CQ - Time: 0907Z - DXCC: 390 +[23-09-2024 16:07:39] INFO DX: VK6RBP - Spotter: JI1HFJ - Freq: 28200.0 - Band: 10M - Mode: CW - Comment: 7 dB 21 WPM NCDXF BCN - Time: 0907Z - DXCC: 150 +[23-09-2024 16:07:39] INFO DX: PA3BUL - Spotter: OK1FCJ - Freq: 7038.7 - Band: 40M - Mode: CW - Comment: 6 dB 15 WPM CQ - Time: 0907Z - DXCC: 263 +[23-09-2024 16:07:40] INFO DX: DK5RK - Spotter: RK3TD - Freq: 14060.5 - Band: 20M - Mode: CW - Comment: 17 dB 20 WPM CQ - Time: 0907Z - DXCC: 230 +[23-09-2024 16:07:40] INFO DX: R4FBJ - Spotter: SM1HEV - Freq: 21034.0 - Band: 15M - Mode: CW - Comment: 9 dB 22 WPM CQ - Time: 0907Z - DXCC: 54 +[23-09-2024 16:07:41] INFO DX: IK4WKU - Spotter: LA6TPA - Freq: 14038.4 - Band: 20M - Mode: CW - Comment: 11 dB 26 WPM CQ - Time: 0907Z - DXCC: 248 +[23-09-2024 16:07:41] INFO DX: VR2B - Spotter: TF3Y - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 11 dB 20 WPM NCDXF BCN - Time: 0907Z - DXCC: 321 +[23-09-2024 16:07:42] INFO DX: EC3STU - Spotter: OE9GHV - Freq: 14060.0 - Band: 20M - Mode: CW - Comment: 10 dB 12 WPM CQ - Time: 0907Z - DXCC: 281 +[23-09-2024 16:07:50] INFO DX: RR9O - Spotter: DL8LAS - Freq: 24930.0 - Band: 12M - Mode: CW - Comment: 9 dB 21 WPM NCDXF BCN - Time: 0907Z - DXCC: 997 +[23-09-2024 16:07:50] INFO DX: SA6RR - Spotter: DL8LAS - Freq: 10130.9 - Band: 30M - Mode: CW - Comment: 9 dB 17 WPM BEACON - Time: 0907Z - DXCC: 284 +[23-09-2024 16:07:52] INFO (** New Band **) DX: F8FTM - Spotter: DM5GG - Freq: 7020.0 - Band: 40M - Mode: CW - Comment: 12 dB 20 WPM CQ - Time: 0907Z - DXCC: 227 +[23-09-2024 16:07:53] INFO DX: RA6UD - Spotter: ON7KEC - Freq: 28016.0 - Band: 10M - Mode: CW - Comment: 5 dB 24 WPM CQ - Time: 0907Z - DXCC: 54 +[23-09-2024 16:07:54] INFO (** New Band **) DX: WA8VTD - Spotter: NG7M - Freq: 3504.8 - Band: 80M - Mode: CW - Comment: 5 dB 23 WPM CQ - Time: 0907Z - DXCC: 291 +[23-09-2024 16:07:56] INFO DX: S52OW - Spotter: OH4KA - Freq: 21029.0 - Band: 15M - Mode: CW - Comment: 32 dB 32 WPM CQ - Time: 0907Z - DXCC: 499 +[23-09-2024 16:07:56] INFO DX: S52OW - Spotter: MW0MUT - Freq: 21029.0 - Band: 15M - Mode: CW - Comment: 29 dB 32 WPM CQ - Time: 0907Z - DXCC: 499 +[23-09-2024 16:07:59] INFO DX: RX0F - Spotter: SQ5J - Freq: 28047.2 - Band: 10M - Mode: CW - Comment: 4 dB 30 WPM CQ - Time: 0907Z - DXCC: 15 +[23-09-2024 16:08:03] INFO DX: HA8AU - Spotter: OE9GHV - Freq: 14019.6 - Band: 20M - Mode: CW - Comment: 39 dB 21 WPM CQ - Time: 0908Z - DXCC: 239 +[23-09-2024 16:08:09] INFO DX: DL7GAO - Spotter: HA8TKS - Freq: 14027.0 - Band: 20M - Mode: CW - Comment: 16 dB 20 WPM CQ - Time: 0908Z - DXCC: 230 +[23-09-2024 16:08:14] INFO DX: IK6JFF - Spotter: EA5RQ - Freq: 14018.0 - Band: 20M - Mode: CW - Comment: 12 dB 25 WPM CQ - Time: 0908Z - DXCC: 248 +[23-09-2024 16:08:16] INFO DX: OH2B - Spotter: DF2CK - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 40 dB 22 WPM NCDXF BCN - Time: 0908Z - DXCC: 997 +[23-09-2024 16:08:17] INFO (** New Band **) DX: KL7KY - Spotter: N6TV - Freq: 3509.5 - Band: 80M - Mode: CW - Comment: 21 dB 20 WPM CQ - Time: 0908Z - DXCC: 6 +[23-09-2024 16:08:34] INFO config loaded. +[23-09-2024 16:08:34] INFO Callsign: XV9Q + +[23-09-2024 16:08:34] INFO deleting existing database +[23-09-2024 16:08:34] INFO Opening SQLite database +[23-09-2024 16:08:34] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 16:08:34] INFO connected to 10.10.10.120:4992 +[23-09-2024 16:08:36] INFO V1.4.0.0 +[23-09-2024 16:08:37] INFO H56DBFE91 +[23-09-2024 16:08:37] INFO M10000001|Client connected from IP 10.10.10.163 +[23-09-2024 16:08:38] INFO S56DBFE91|radio slices=3 panadapters=3 lineout_gain=33 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 +[23-09-2024 16:08:38] INFO S56DBFE91|radio filter_sharpness VOICE level=2 auto_level=1 +[23-09-2024 16:08:39] INFO S56DBFE91|radio filter_sharpness CW level=2 auto_level=1 +[23-09-2024 16:08:39] INFO S56DBFE91|radio filter_sharpness DIGITAL level=0 auto_level=0 +[23-09-2024 16:08:40] INFO S56DBFE91|radio static_net_params ip= gateway= netmask= +[23-09-2024 16:08:40] INFO S56DBFE91|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 +[23-09-2024 16:08:41] INFO S56DBFE91|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=0 tx1_enabled=1 tx2_enabled=0 tx3_enabled=0 tx_delay=35 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 +[23-09-2024 16:08:42] INFO S56DBFE91|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 +[23-09-2024 16:08:42] INFO S56DBFE91|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 +[23-09-2024 16:08:43] INFO S0|interlock tx_client_handle=0x00000000 state=RECEIVE reason= source= tx_allowed=0 amplifier= +[23-09-2024 16:08:43] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 16:08:44] INFO Found login prompt...sending callsign +[23-09-2024 16:08:46] INFO Skimmer is on as defined in the config file +[23-09-2024 16:08:46] INFO FT8 is off as defined in the config file +[23-09-2024 16:08:47] INFO (** Worked **) DX: F5IN - Spotter: HG8A - Freq: 21017.0 - Band: 15M - Mode: CW - Comment: 8 dB 19 WPM CQ - Time: 0908Z - DXCC: 227 +[23-09-2024 16:08:47] INFO DX: F5IN - Spotter: HG8A - Freq: 21017.0 - Band: 15M - Mode: CW - Comment: 8 dB 19 WPM CQ - Time: 0908Z - DXCC: 227 +[23-09-2024 16:08:48] INFO R1|0|355 +[23-09-2024 16:08:48] INFO DX: DK1VD - Spotter: 3V8SS - Freq: 21041.3 - Band: 15M - Mode: CW - Comment: 4 dB 33 WPM CQ - Time: 0908Z - DXCC: 230 +[23-09-2024 16:08:49] INFO R2|0|386 +[23-09-2024 16:08:50] INFO DX: DU1WBX - Spotter: BH4XDZ - Freq: 28021.1 - Band: 10M - Mode: CW - Comment: 12 dB 22 WPM CQ - Time: 0908Z - DXCC: 375 +[23-09-2024 16:08:50] INFO R3|0|387 +[23-09-2024 16:08:51] INFO DX: CS3B - Spotter: G4ZFE - Freq: 21150.0 - Band: 15M - Mode: CW - Comment: 13 dB 21 WPM NCDXF BCN - Time: 0908Z - DXCC: 256 +[23-09-2024 16:08:51] INFO R4|0|339 +[23-09-2024 16:08:51] INFO (** New Band **) DX: KL7KY - Spotter: K6FOD - Freq: 3509.5 - Band: 80M - Mode: CW - Comment: 15 dB 20 WPM CQ - Time: 0908Z - DXCC: 6 +[23-09-2024 16:08:53] INFO R5|0|385 +[23-09-2024 16:08:53] INFO DX: TA2ES - Spotter: MM0ZBH - Freq: 28025.0 - Band: 10M - Mode: CW - Comment: 7 dB 21 WPM CQ - Time: 0908Z - DXCC: 390 +[23-09-2024 16:08:54] INFO R6|0|353 +[23-09-2024 16:08:54] INFO (** Worked **) DX: JA8FXO - Spotter: DL0PF - Freq: 28011.2 - Band: 10M - Mode: CW - Comment: 12 dB 27 WPM CQ - Time: 0908Z - DXCC: 339 +[23-09-2024 16:08:54] INFO DX: JA8FXO - Spotter: DL0PF - Freq: 28011.2 - Band: 10M - Mode: CW - Comment: 12 dB 27 WPM CQ - Time: 0908Z - DXCC: 339 +[23-09-2024 16:08:55] INFO R7|0|388 +[23-09-2024 16:08:55] INFO DX: DK0WCY - Spotter: DL8LAS - Freq: 10144.0 - Band: 30M - Mode: CW - Comment: 25 dB 16 WPM BEACON - Time: 0908Z - DXCC: 230 +[23-09-2024 16:08:57] INFO R8|0|314 +[23-09-2024 16:08:58] INFO DX: IK6JFF - Spotter: RK3TD - Freq: 14018.0 - Band: 20M - Mode: CW - Comment: 15 dB 25 WPM CQ - Time: 0908Z - DXCC: 248 +[23-09-2024 16:08:58] INFO R9|0|384 +[23-09-2024 16:08:58] INFO DX: G5LP - Spotter: LZ5DI - Freq: 28024.4 - Band: 10M - Mode: CW - Comment: 9 dB 21 WPM CQ - Time: 0908Z - DXCC: 223 +[23-09-2024 16:08:59] INFO R10|0|389 +[23-09-2024 16:08:59] INFO DX: OZ2A - Spotter: RN4WA - Freq: 10120.5 - Band: 30M - Mode: CW - Comment: 4 dB 29 WPM CQ - Time: 0908Z - DXCC: 221 +[23-09-2024 16:08:59] INFO R11|0|390 +[23-09-2024 16:09:00] INFO (** Worked **) DX: R3PJN - Spotter: BA6KC - Freq: 28010.0 - Band: 10M - Mode: CW - Comment: 11 dB 22 WPM CQ - Time: 0908Z - DXCC: 54 +[23-09-2024 16:09:00] INFO DX: R3PJN - Spotter: BA6KC - Freq: 28010.0 - Band: 10M - Mode: CW - Comment: 11 dB 22 WPM CQ - Time: 0908Z - DXCC: 54 +[23-09-2024 16:09:00] INFO R12|0|347 +[23-09-2024 16:09:00] INFO DX: JR1NHD - Spotter: DF2CK - Freq: 28015.0 - Band: 10M - Mode: CW - Comment: 21 dB 23 WPM CQ - Time: 0908Z - DXCC: 339 +[23-09-2024 16:09:01] INFO R13|0|391 +[23-09-2024 16:09:01] INFO (** Worked **) DX: JA8FXO - Spotter: RU9CZD - Freq: 28010.8 - Band: 10M - Mode: CW - Comment: 16 dB 26 WPM CQ - Time: 0908Z - DXCC: 339 +[23-09-2024 16:09:01] INFO DX: JA8FXO - Spotter: RU9CZD - Freq: 28010.8 - Band: 10M - Mode: CW - Comment: 16 dB 26 WPM CQ - Time: 0908Z - DXCC: 339 +[23-09-2024 16:09:02] INFO R14|0|392 +[23-09-2024 16:09:02] INFO DX: 8J1FC - Spotter: BH4XDZ - Freq: 7005.0 - Band: 40M - Mode: CW - Comment: 6 dB 21 WPM CQ - Time: 0908Z - DXCC: 339 +[23-09-2024 16:09:02] INFO R15|0|393 +[23-09-2024 16:09:03] INFO (** New Band **) DX: M0ASN - Spotter: G0KTN - Freq: 7025.0 - Band: 40M - Mode: CW - Comment: 28 dB 20 WPM CQ - Time: 0908Z - DXCC: 223 +[23-09-2024 16:09:03] INFO R16|0|394 +[23-09-2024 16:09:03] INFO (** New Band **) DX: M0ASN - Spotter: MM0ZBH - Freq: 7025.0 - Band: 40M - Mode: CW - Comment: 34 dB 20 WPM CQ - Time: 0909Z - DXCC: 223 +[23-09-2024 16:09:08] INFO R17|0|394 +[23-09-2024 16:09:09] INFO DX: PA0MBO - Spotter: G4IRN - Freq: 7036.0 - Band: 40M - Mode: CW - Comment: 17 dB 18 WPM CQ - Time: 0909Z - DXCC: 263 +[23-09-2024 16:09:10] INFO R18|0|395 +[23-09-2024 16:09:10] INFO DX: DU1WBX - Spotter: BD4QJP - Freq: 28022.0 - Band: 10M - Mode: CW - Comment: 6 dB 23 WPM CQ - Time: 0909Z - DXCC: 375 +[23-09-2024 16:09:11] INFO R19|0|396 +[23-09-2024 16:09:11] INFO (** New Band **) DX: OK0EU - Spotter: DF2CK - Freq: 7038.5 - Band: 40M - Mode: CW - Comment: 10 dB 21 WPM BEACON - Time: 0909Z - DXCC: 503 +[23-09-2024 16:09:12] INFO R20|0|397 +[23-09-2024 16:09:12] INFO (** New DXCC **) DX: 4U1UN - Spotter: G4ZFE - Freq: 14100.0 - Band: 20M - Mode: CW - Comment: 17 dB 20 WPM NCDXF BCN - Time: 0909Z - Command: 0, FlexSpot: 0 +[23-09-2024 16:09:12] INFO R21|0|398 +[23-09-2024 16:09:13] INFO DX: R4FBJ - Spotter: DL1HWS - Freq: 21034.0 - Band: 15M - Mode: CW - Comment: 15 dB 24 WPM CQ - Time: 0909Z - DXCC: 54 +[23-09-2024 16:09:13] INFO R22|0|322 +[23-09-2024 16:09:13] INFO (** New Mode **) DX: SM6LKT - Spotter: ON3KSL - Freq: 14070.0 - Band: 20M - Mode: - Comment: - Time: 0909Z - DXCC: 284 +[23-09-2024 16:09:14] INFO R23|0|399 +[23-09-2024 16:09:14] INFO (** New Band **) DX: I0HCJ - Spotter: S53WW - Freq: 7030.0 - Band: 40M - Mode: CW - Comment: 23 dB 21 WPM CQ - Time: 0909Z - DXCC: 248 +[23-09-2024 16:09:14] INFO R24|0|400 +[23-09-2024 16:09:14] INFO (** New Band **) DX: JE7RMT - Spotter: JH7CSU - Freq: 3519.0 - Band: 80M - Mode: CW - Comment: 24 dB 15 WPM CQ - Time: 0909Z - DXCC: 339 +[23-09-2024 16:09:15] INFO R25|0|401 +[23-09-2024 16:16:17] INFO config loaded. +[23-09-2024 16:16:18] INFO Callsign: XV9Q + +[23-09-2024 16:16:18] INFO deleting existing database +[23-09-2024 16:16:18] INFO Opening SQLite database +[23-09-2024 16:16:18] INFO telnet server listening on %s:%s0.0.0.07301 +[23-09-2024 16:16:18] INFO connected to 10.10.10.120:4992 +[23-09-2024 16:16:19] INFO V1.4.0.0 +[23-09-2024 16:16:19] INFO H450A11C5 +[23-09-2024 16:16:20] INFO M10000001|Client connected from IP 10.10.10.163 +[23-09-2024 16:16:20] INFO S450A11C5|radio slices=3 panadapters=3 lineout_gain=33 lineout_mute=0 headphone_gain=44 headphone_mute=0 remote_on_enabled=1 pll_done=0 freq_error_ppb=0 cal_freq=15.000000 tnf_enabled=1 nickname=XV9Q-6600 callsign=XV9Q binaural_rx=0 full_duplex_enabled=0 band_persistence_enabled=1 rtty_mark_default=2125 enforce_private_ip_connections=0 backlight=11 mute_local_audio_when_remote=1 daxiq_capacity=16 daxiq_available=12 alpha=0 low_latency_digital_modes=1 mf_enable=1 +[23-09-2024 16:16:20] INFO S450A11C5|radio filter_sharpness VOICE level=2 auto_level=1 +[23-09-2024 16:16:20] INFO S450A11C5|radio filter_sharpness CW level=2 auto_level=1 +[23-09-2024 16:16:21] INFO S450A11C5|radio filter_sharpness DIGITAL level=0 auto_level=0 +[23-09-2024 16:16:21] INFO S450A11C5|radio static_net_params ip= gateway= netmask= +[23-09-2024 16:16:21] INFO S450A11C5|radio oscillator state=tcxo setting=auto locked=1 ext_present=0 gpsdo_present=0 tcxo_present=1 +[23-09-2024 16:16:21] INFO S450A11C5|interlock acc_txreq_enable=0 rca_txreq_enable=0 acc_tx_enabled=0 tx1_enabled=1 tx2_enabled=0 tx3_enabled=0 tx_delay=35 acc_tx_delay=0 tx1_delay=0 tx2_delay=0 tx3_delay=0 acc_txreq_polarity=0 rca_txreq_polarity=0 timeout=0 +[23-09-2024 16:16:21] INFO S450A11C5|eq rx mode=1 63Hz=9 125Hz=10 250Hz=10 500Hz=12 1000Hz=15 2000Hz=14 4000Hz=14 8000Hz=13 +[23-09-2024 16:16:22] INFO S450A11C5|eq rxsc mode=1 63Hz=-1 125Hz=0 250Hz=0 500Hz=2 1000Hz=5 2000Hz=4 4000Hz=4 8000Hz=3 +[23-09-2024 16:16:22] INFO S0|interlock tx_client_handle=0x00000000 state=RECEIVE reason= source= tx_allowed=0 amplifier= +[23-09-2024 16:16:22] INFO connected to dxc.k0xm.net:7300 +[23-09-2024 16:16:23] INFO Found login prompt...sending callsign +[23-09-2024 16:16:25] INFO Skimmer is on as defined in the config file +[23-09-2024 16:16:25] INFO FT8 is off as defined in the config file +[23-09-2024 16:16:26] INFO DX: RA6UD - Spotter: OE6TZE - Freq: 28015.9 - Band: 10M - Mode: CW - Comment: 10 dB 22 WPM CQ - Time: 0916Z - DXCC: 54 +[23-09-2024 16:16:29] INFO R1|0|402 +[23-09-2024 16:16:29] INFO (** New Band **) DX: DJ6ZM - Spotter: OE6TZE - Freq: 7027.1 - Band: 40M - Mode: CW - Comment: 8 dB 29 WPM CQ - Time: 0916Z - DXCC: 230 +[23-09-2024 16:16:30] INFO R2|0|403 +[23-09-2024 16:16:30] INFO DX: JA2IGY - Spotter: 9M2CNC - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 12 dB 22 WPM NCDXF BCN - Time: 0916Z - DXCC: 339 +[23-09-2024 16:16:31] INFO R3|0|404 +[23-09-2024 16:16:31] INFO DX: K1ZM - Spotter: WB6BEE - Freq: 1829.7 - Band: 17M - Mode: CW - Comment: 24 dB 18 WPM CQ - Time: 0916Z - DXCC: 291 +[23-09-2024 16:16:31] INFO R4|0|405 +[23-09-2024 16:16:31] INFO (** Worked **) DX: HS0ZJF - Spotter: SQ5OUO - Freq: 28013.1 - Band: 10M - Mode: CW - Comment: 9 dB 22 WPM CQ - Time: 0916Z - DXCC: 387 +[23-09-2024 16:16:31] INFO DX: HS0ZJF - Spotter: SQ5OUO - Freq: 28013.1 - Band: 10M - Mode: CW - Comment: 9 dB 22 WPM CQ - Time: 0916Z - DXCC: 387 +[23-09-2024 16:16:32] INFO R5|0|406 +[23-09-2024 16:16:32] INFO (** New Band **) DX: SM5CVJ - Spotter: OG66X - Freq: 3538.0 - Band: 80M - Mode: CW - Comment: 5 dB 21 WPM CQ - Time: 0916Z - DXCC: 284 +[23-09-2024 16:16:32] INFO R6|0|407 +[23-09-2024 16:16:33] INFO (** Worked **) DX: G3ZXZ - Spotter: G4IRN - Freq: 21020.9 - Band: 15M - Mode: CW - Comment: 23 dB 21 WPM CQ - Time: 0916Z - DXCC: 223 +[23-09-2024 16:16:33] INFO DX: G3ZXZ - Spotter: G4IRN - Freq: 21020.9 - Band: 15M - Mode: CW - Comment: 23 dB 21 WPM CQ - Time: 0916Z - DXCC: 223 +[23-09-2024 16:16:33] INFO R7|0|408 +[23-09-2024 16:16:33] INFO DX: RX0F - Spotter: LZ4UX - Freq: 24902.5 - Band: 12M - Mode: CW - Comment: 6 dB 30 WPM CQ - Time: 0916Z - DXCC: 15 +[23-09-2024 16:16:34] INFO R8|0|409 +[23-09-2024 16:16:34] INFO DX: JJ0TJS - Spotter: 7N4XCV - Freq: 7012.8 - Band: 40M - Mode: CW - Comment: 16 dB 15 WPM CQ - Time: 0916Z - DXCC: 339 +[23-09-2024 16:16:34] INFO R9|0|410 +[23-09-2024 16:16:34] INFO DX: BI1AVH - Spotter: ZL3X - Freq: 18080.0 - Band: 17M - Mode: CW - Comment: 7 dB 21 WPM CQ - Time: 0916Z - DXCC: 318 +[23-09-2024 16:16:35] INFO R10|0|411 +[23-09-2024 16:16:35] INFO DX: SM6NT - Spotter: DM5GG - Freq: 28014.0 - Band: 10M - Mode: CW - Comment: 12 dB 21 WPM CQ - Time: 0916Z - DXCC: 284 +[23-09-2024 16:16:36] INFO R11|0|412 +[23-09-2024 16:16:37] INFO DX: RR9O - Spotter: DF2CK - Freq: 18110.1 - Band: 17M - Mode: CW - Comment: 8 dB 22 WPM NCDXF BCN - Time: 0916Z - DXCC: 997 +[23-09-2024 16:16:37] INFO R12|0|413 +[23-09-2024 16:16:37] INFO DX: DL6GCA - Spotter: OZ4ADX - Freq: 14064.9 - Band: 20M - Mode: CW - Comment: 2 dB 23 WPM CQ - Time: 0916Z - DXCC: 230 +[23-09-2024 16:16:40] INFO R13|0|414 +[23-09-2024 16:16:41] INFO DX: VK6RBP - Spotter: VK2GEL - Freq: 24930.0 - Band: 12M - Mode: CW - Comment: 9 dB 21 WPM NCDXF BCN - Time: 0916Z - DXCC: 150 +[23-09-2024 16:16:41] INFO R14|0|415 +[23-09-2024 16:16:41] INFO DX: N8TGQ - Spotter: W1NT - Freq: 7053.3 - Band: 40M - Mode: CW - Comment: 6 dB 13 WPM CQ - Time: 0916Z - DXCC: 291 +[23-09-2024 16:16:41] INFO R15|0|416 +[23-09-2024 16:16:42] INFO DX: VR2B - Spotter: JI1HFJ - Freq: 18110.0 - Band: 17M - Mode: CW - Comment: 14 dB 22 WPM NCDXF BCN - Time: 0916Z - DXCC: 321 +[23-09-2024 16:16:42] INFO R16|0|417 +[23-09-2024 16:16:43] INFO DX: RR9O - Spotter: DF2CK - Freq: 21150.1 - Band: 15M - Mode: CW - Comment: 4 dB 23 WPM NCDXF BCN - Time: 0916Z - DXCC: 997 +[23-09-2024 16:16:43] INFO R17|0|418 +[23-09-2024 16:16:44] INFO (** Worked **) DX: JJ1FXF - Spotter: BA6KC - Freq: 28059.0 - Band: 10M - Mode: CW - Comment: 17 dB 19 WPM CQ - Time: 0916Z - DXCC: 339 +[23-09-2024 16:16:44] INFO DX: JJ1FXF - Spotter: BA6KC - Freq: 28059.0 - Band: 10M - Mode: CW - Comment: 17 dB 19 WPM CQ - Time: 0916Z - DXCC: 339 +[23-09-2024 16:16:45] INFO R18|0|419 +[23-09-2024 16:16:48] INFO (** New Band **) DX: G4LFU - Spotter: SM7IUN - Freq: 7022.0 - Band: 40M - Mode: CW - Comment: 11 dB 25 WPM CQ - Time: 0916Z - DXCC: 223 +[23-09-2024 16:16:48] INFO R19|0|420 +[23-09-2024 16:16:49] INFO (** New Band **) DX: G4LFU - Spotter: DF2CK - Freq: 7022.0 - Band: 40M - Mode: CW - Comment: 17 dB 25 WPM CQ - Time: 0916Z - DXCC: 223 +[23-09-2024 16:16:49] INFO R20|0|420 +[23-09-2024 16:16:52] INFO DX: VR2B - Spotter: JI1HFJ - Freq: 21150.2 - Band: 15M - Mode: CW - Comment: 8 dB 22 WPM NCDXF BCN - Time: 0916Z - DXCC: 321 +[23-09-2024 16:16:52] INFO R21|0|421 +[23-09-2024 16:16:56] INFO DX: UT2IT - Spotter: OG66X - Freq: 21019.0 - Band: 15M - Mode: CW - Comment: 6 dB 25 WPM CQ - Time: 0916Z - DXCC: 288 +[23-09-2024 16:16:56] INFO R22|0|422 +[23-09-2024 16:16:57] INFO DX: I2IAL - Spotter: LA6TPA - Freq: 21060.9 - Band: 15M - Mode: CW - Comment: 1 dB 14 WPM CQ - Time: 0916Z - DXCC: 248 +[23-09-2024 16:16:57] INFO R23|0|423 +[23-09-2024 16:16:59] INFO DX: HA8AU - Spotter: ES2RR - Freq: 14019.6 - Band: 20M - Mode: CW - Comment: 35 dB 21 WPM CQ - Time: 0916Z - DXCC: 239 +[23-09-2024 16:16:59] INFO R24|0|424 +[23-09-2024 16:17:00] INFO (** Worked **) DX: F5IN - Spotter: YO5LD - Freq: 21017.0 - Band: 15M - Mode: CW - Comment: 50 dB 20 WPM CQ - Time: 0917Z - DXCC: 227 +[23-09-2024 16:17:00] INFO DX: F5IN - Spotter: YO5LD - Freq: 21017.0 - Band: 15M - Mode: CW - Comment: 50 dB 20 WPM CQ - Time: 0917Z - DXCC: 227 +[23-09-2024 16:17:00] INFO R25|0|425 +[23-09-2024 16:17:00] INFO DX: K4KDX - Spotter: KH6LC - Freq: 7030.6 - Band: 40M - Mode: CW - Comment: 6 dB 23 WPM CQ - Time: 0917Z - DXCC: 291 +[23-09-2024 16:17:00] INFO R26|0|426 +[23-09-2024 16:17:01] INFO DX: IZ5BBS - Spotter: GI4DOH - Freq: 14014.0 - Band: 20M - Mode: CW - Comment: 7 dB 19 WPM CQ - Time: 0917Z - DXCC: 248 +[23-09-2024 16:17:01] INFO R27|0|427 +[23-09-2024 16:17:02] INFO (** New Mode **) DX: IZ8FCA - Spotter: EA7IRV - Freq: 14165.0 - Band: 20M - Mode: - Comment: ( IONOSFERA TEST - Time: 0917Z - DXCC: 248 +[23-09-2024 16:17:02] INFO R28|0|428 +[23-09-2024 16:17:03] INFO DX: M0PKD - Spotter: W2NAF - Freq: 14020.0 - Band: 20M - Mode: CW - Comment: 6 dB 22 WPM CQ - Time: 0917Z - DXCC: 223 +[23-09-2024 16:17:03] INFO R29|0|429 +[23-09-2024 16:17:08] INFO DX: IT9FRT - Spotter: G4IRN - Freq: 14050.0 - Band: 20M - Mode: CW - Comment: 32 dB 20 WPM CQ - Time: 0917Z - DXCC: 248 +[23-09-2024 16:17:09] INFO R30|0|430 +[23-09-2024 16:17:17] INFO DX: F6FQX - Spotter: S53WW - Freq: 21066.0 - Band: 15M - Mode: CW - Comment: 32 dB 21 WPM CQ - Time: 0917Z - DXCC: 227 +[23-09-2024 16:17:17] INFO R31|0|431 +[23-09-2024 16:17:17] INFO DX: F6FQX - Spotter: OG66X - Freq: 21066.0 - Band: 15M - Mode: CW - Comment: 9 dB 21 WPM CQ - Time: 0917Z - DXCC: 227 +[23-09-2024 16:17:17] INFO R32|0|431 +[23-09-2024 16:17:19] INFO DX: 4X6TU - Spotter: DL8LAS - Freq: 18109.9 - Band: 17M - Mode: CW - Comment: 9 dB 18 WPM NCDXF BCN - Time: 0917Z - DXCC: 997 +[23-09-2024 16:17:19] INFO R33|0|432 diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..5560e6c --- /dev/null +++ b/go.mod @@ -0,0 +1,19 @@ +module git.rouggy.com/rouggy/FlexDXCluster + +go 1.23.1 + +require ( + github.com/mattn/go-sqlite3 v1.14.23 + github.com/sirupsen/logrus v1.9.3 + gopkg.in/yaml.v2 v2.4.0 +) + +require ( + github.com/mattn/go-colorable v0.1.13 // indirect + github.com/mattn/go-isatty v0.0.16 // indirect + github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect + github.com/x-cray/logrus-prefixed-formatter v0.5.2 // indirect + golang.org/x/crypto v0.27.0 // indirect + golang.org/x/sys v0.25.0 // indirect + golang.org/x/term v0.24.0 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..f9dfa1a --- /dev/null +++ b/go.sum @@ -0,0 +1,35 @@ +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= +github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= +github.com/mattn/go-isatty v0.0.16 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ= +github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= +github.com/mattn/go-sqlite3 v1.14.23 h1:gbShiuAP1W5j9UOksQ06aiiqPMxYecovVGwmTxWtuw0= +github.com/mattn/go-sqlite3 v1.14.23/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y= +github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d h1:5PJl274Y63IEHC+7izoQE9x6ikvDFZS2mDVS3drnohI= +github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d/go.mod h1:01TrycV0kFyexm33Z7vhZRXopbI8J3TDReVlkTgMUxE= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= +github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= +github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/x-cray/logrus-prefixed-formatter v0.5.2 h1:00txxvfBM9muc0jiLIEAkAcIMJzfthRT6usrui8uGmg= +github.com/x-cray/logrus-prefixed-formatter v0.5.2/go.mod h1:2duySbKsL6M18s5GU7VPsoEPHyzalCE06qoARUCeBBE= +golang.org/x/crypto v0.27.0 h1:GXm2NjJrPaiv/h1tb2UH8QfgC/hOf/+z0p6PT8o1w7A= +golang.org/x/crypto v0.27.0/go.mod h1:1Xngt8kV6Dvbssa53Ziq6Eqn0HqbZi5Z6R0ZpwQzt70= +golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 h1:0A+M6Uqn+Eje4kHMK80dtF3JCXC4ykBgQG4Fe06QRhQ= +golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.25.0 h1:r+8e+loiHxRqhXVl6ML1nO3l1+oFoWbnlu2Ehimmi34= +golang.org/x/sys v0.25.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/term v0.24.0 h1:Mh5cbb+Zk2hqqXNO7S1iTjEphVL+jb8ZWaqh/g+JWkM= +golang.org/x/term v0.24.0/go.mod h1:lOBK/LVxemqiMij05LGJ0tzNr8xlmwBRJ81PX6wVLH8= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/logger/log.go b/logger/log.go new file mode 100644 index 0000000..abe05e9 --- /dev/null +++ b/logger/log.go @@ -0,0 +1,63 @@ +package logger + +import ( + "io" + "os" + + log "github.com/sirupsen/logrus" + prefixed "github.com/x-cray/logrus-prefixed-formatter" +) + +var Log *log.Logger + +func NewLog() *log.Logger { + f, err := os.OpenFile("flexradio.log", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666) + if err != nil { + panic(err) + } + + w := io.MultiWriter(os.Stdout, f) + + Log := &log.Logger{ + Out: w, + Level: log.DebugLevel, + Formatter: &prefixed.TextFormatter{ + DisableColors: false, + TimestampFormat: "02-01-2006 15:04:05", + FullTimestamp: true, + ForceFormatting: true, + }, + } + + return Log +} + +// Info ... +func Info(format string, v ...interface{}) { + log.Infof(format, v...) +} + +// Warn ... +func Warn(format string, v ...interface{}) { + log.Warnf(format, v...) +} + +// Error ... +func Error(format string, v ...interface{}) { + log.Errorf(format, v...) +} + +var ( + + // ConfigError ... + ConfigError = "%v type=config.error" + + // HTTPError ... + HTTPError = "%v type=http.error" + + // HTTPWarn ... + HTTPWarn = "%v type=http.warn" + + // HTTPInfo ... + HTTPInfo = "%v type=http.info" +) diff --git a/spot.go b/spot.go new file mode 100644 index 0000000..fd7cb6f --- /dev/null +++ b/spot.go @@ -0,0 +1,193 @@ +package main + +import ( + "fmt" + "regexp" + "strconv" + "strings" + + _ "github.com/mattn/go-sqlite3" + log "github.com/sirupsen/logrus" +) + +type TelnetSpot struct { + DX string + Spotter string + Frequency string + Mode string + Band string + Time string + DXCC string + Comment string + CommandNumber int + FlexSpotNumber int + NewDXCC bool + NewBand bool + NewMode bool + CallsignWorked bool + SpotChan chan TelnetSpot +} + +func ProcessTelnetSpot(re *regexp.Regexp, spotRaw string, SpotChan chan TelnetSpot, log *log.Logger) { + match := re.FindStringSubmatch(spotRaw) + + if len(match) != 0 { + spot := TelnetSpot{ + DX: match[3], + Spotter: match[1], + Frequency: match[2], + Mode: match[4], + Comment: strings.Trim(match[5], " "), + Time: match[6], + } + + spot.GetBand() + spot.GuessMode() + spot.DXCC, _ = CheckClubogDXCC(spot.DX) + spot.CallsignWorked = false + spot.NewBand = false + spot.NewMode = false + spot.NewDXCC = false + + contactRepo := NewContactsRepository(Cfg.SQLite.SQLitePath, log) + + defer contactRepo.db.Close() + + contacts, _ := contactRepo.ListByCountry(spot.DXCC) + contactsMode, _ := contactRepo.ListByCountryMode(spot.DXCC, spot.Mode) + contactsBand, _ := contactRepo.ListByCountryBand(spot.DXCC, spot.Band) + contactsCall, _ := contactRepo.ListByCallSign(spot.DX, spot.Band, spot.Mode) + + if len(contacts) == 0 { + switch spot.DXCC { + case "997": + spot.NewDXCC = false + case "1000": + spot.NewDXCC = false + default: + spot.NewDXCC = true + } + } else if len(contactsMode) == 0 { + spot.NewMode = true + } else if len(contactsBand) == 0 { + spot.NewBand = true + } else if len(contactsCall) > 0 { + spot.CallsignWorked = true + } + + if spot.NewDXCC { + log.Infof("(** New DXCC **) DX: %s - Spotter: %s - Freq: %s - Band: %s - Mode: %s - Comment: %s - Time: %s - Command: %v, FlexSpot: %v", + spot.DX, spot.Spotter, spot.Frequency, spot.Band, spot.Mode, spot.Comment, spot.Time, spot.CommandNumber, spot.FlexSpotNumber) + } + + if !spot.NewDXCC && spot.NewBand && spot.NewMode { + log.Infof("(** New Band/Mode **) DX: %s - Spotter: %s - Freq: %s - Band: %s - Mode: %s - Comment: %s - Time: %s - DXCC: %s", + spot.DX, spot.Spotter, spot.Frequency, spot.Band, spot.Mode, spot.Comment, spot.Time, spot.DXCC) + } + + if !spot.NewDXCC && spot.NewBand && !spot.NewMode { + log.Infof("(** New Band **) DX: %s - Spotter: %s - Freq: %s - Band: %s - Mode: %s - Comment: %s - Time: %s - DXCC: %s", + spot.DX, spot.Spotter, spot.Frequency, spot.Band, spot.Mode, spot.Comment, spot.Time, spot.DXCC) + } + + if !spot.NewDXCC && !spot.NewBand && spot.NewMode { + log.Infof("(** New Mode **) DX: %s - Spotter: %s - Freq: %s - Band: %s - Mode: %s - Comment: %s - Time: %s - DXCC: %s", + spot.DX, spot.Spotter, spot.Frequency, spot.Band, spot.Mode, spot.Comment, spot.Time, spot.DXCC) + } + + if !spot.NewDXCC && !spot.NewBand && !spot.NewMode && spot.CallsignWorked { + log.Infof("(** Worked **) DX: %s - Spotter: %s - Freq: %s - Band: %s - Mode: %s - Comment: %s - Time: %s - DXCC: %s", + spot.DX, spot.Spotter, spot.Frequency, spot.Band, spot.Mode, spot.Comment, spot.Time, spot.DXCC) + } + + if !spot.NewDXCC && !spot.NewBand && !spot.NewMode { + log.Infof("DX: %s - Spotter: %s - Freq: %s - Band: %s - Mode: %s - Comment: %s - Time: %s - DXCC: %s", + spot.DX, spot.Spotter, spot.Frequency, spot.Band, spot.Mode, spot.Comment, spot.Time, spot.DXCC) + } + + SpotChan <- spot + + } + +} + +func (spot *TelnetSpot) GetBand() { + switch true { + case strings.HasPrefix(spot.Frequency, "1.8"): + spot.Band = "160M" + if spot.Mode == "SSB" { + spot.Mode = "LSB" + } + case strings.HasPrefix(spot.Frequency, "3"): + spot.Band = "80M" + if spot.Mode == "SSB" { + spot.Mode = "LSB" + } + case strings.HasPrefix(spot.Frequency, "7"): + spot.Band = "40M" + if spot.Mode == "SSB" { + spot.Mode = "LSB" + } + case strings.HasPrefix(spot.Frequency, "10"): + spot.Band = "30M" + case strings.HasPrefix(spot.Frequency, "14"): + spot.Band = "20M" + if spot.Mode == "SSB" { + spot.Mode = "USB" + } + case strings.HasPrefix(spot.Frequency, "18"): + spot.Band = "17M" + if spot.Mode == "SSB" { + spot.Mode = "USB" + } + case strings.HasPrefix(spot.Frequency, "21"): + spot.Band = "15M" + if spot.Mode == "SSB" { + spot.Mode = "USB" + } + case strings.HasPrefix(spot.Frequency, "24"): + spot.Band = "12M" + if spot.Mode == "SSB" { + spot.Mode = "USB" + } + case strings.HasPrefix(spot.Frequency, "28"): + spot.Band = "10M" + if spot.Mode == "SSB" { + spot.Mode = "USB" + } + case strings.HasPrefix(spot.Frequency, "29"): + spot.Band = "10M" + if spot.Mode == "SSB" { + spot.Mode = "USB" + } + default: + spot.Band = "N/A" + } +} + +func (spot *TelnetSpot) GuessMode() { + if spot.Mode == "" { + freqInt, err := strconv.ParseFloat(spot.Frequency, 32) + if err != nil { + fmt.Println("could not convert frequency string in float64:", err) + } + + switch spot.Band { + case "160M": + if freqInt <= 1840 && freqInt >= 1800 { + spot.Mode = "CW" + } + case "40M": + if freqInt <= 7074 && freqInt >= 7000 { + spot.Mode = "CW" + } else if freqInt <= 7079 && freqInt > 7074 { + spot.Mode = "FT8" + } else if freqInt <= 7079 && freqInt > 7074 { + spot.Mode = "FT8" + } else if freqInt <= 7079 && freqInt > 7074 { + spot.Mode = "FT8" + } + + } + } +} diff --git a/utils.go b/utils.go new file mode 100644 index 0000000..024fba9 --- /dev/null +++ b/utils.go @@ -0,0 +1,34 @@ +package main + +import ( + "log" + "math" + "strconv" +) + +func FreqMhztoHz(freq string) string { + frequency, err := strconv.ParseFloat(freq, 64) + if err != nil { + log.Println("could not convert frequency string to int", err) + } + + frequency = frequency / 1000 + + return strconv.FormatFloat(frequency, 'f', 6, 64) +} + +func FreqHztoMhz(freq string) string { + frequency, err := strconv.ParseFloat(freq, 64) + if err != nil { + log.Println("could not convert frequency string to int", err) + } + + frequency = frequency * 1000 + + return strconv.FormatFloat(frequency, 'f', 6, 64) +} + +func roundFloat(val float64, precision uint) float64 { + ratio := math.Pow(10, float64(precision)) + return math.Round(val*ratio) / ratio +}